action departureboard_get_departures_by_crs { label: "getDeparturesByCRS is used to get a list of services 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: "/getDeparturesByCRS/{CRS}" encoding: json input: { type: "object" properties: { CRS: { type: "string" } apiKey: { type: "string" } filterStation: { type: "string" } numServices: { type: "integer" } serviceDetails: { type: "boolean" } timeOffset: { type: "integer" } timeWindow: { type: "integer" } } required: ["CRS", "apiKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }