action departureboard_get_next_departures_by_crs { label: "getNextDeparturesByCRS is used to get the next service running between two stations. Multiple destinations can be specified. This will typically return a single train service, but will also return a replacement bus or ferry service if in place. This will return the next departures for each of the filterList stations specified. It may not return the fastest next service. To get the fastest next service use the getFastestDeparturesByCRS endpoint." provider: departureboard method: GET path: "/getNextDeparturesByCRS/{CRS}" encoding: json input: { type: "object" properties: { CRS: { type: "string" } apiKey: { type: "string" } filterList: { type: "string" } serviceDetails: { type: "boolean" } timeOffset: { type: "integer" } timeWindow: { type: "integer" } } required: ["CRS", "apiKey", "filterList"] additionalProperties: false } output: { type: "object" additionalProperties: true } }