action departureboard_get_arrivals_and_departures_by_crs { label: "getArrivalsAndDeparturesByCRS is used to get a list of services arriving to and departing from a UK train station by the CRS (Computer Reservation System) code. This will typically return a list of train services, but will also return any replacement bus or ferry services that are in place." provider: departureboard method: GET path: "/getArrivalsAndDeparturesByCRS/{CRS}" encoding: json input: { type: "object" properties: { CRS: { type: "string" } apiKey: { type: "string" } filterStation: { type: "string" } filterType: { type: "string" } numServices: { type: "integer" } serviceDetails: { type: "boolean" } timeOffset: { type: "integer" } timeWindow: { type: "integer" } } required: ["CRS", "apiKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }