moovexDocs

Get shuttle groups

Returns shuttle groups grouped by supplier/area/line/direction. Optional weekday filter.

GET/shuttles/groups

Query Parameters

ParameterTypeRequiredDescription
weekDay"Monday""Tuesday""Wednesday"

Example Response

{
  "suppliers": [
    {
      "id": 1,
      "name": "Supplier A",
      "areas": [
        {
          "name": "North",
          "lines": [
            {
              "name": "Blue",
              "directions": [
                {
                  "id": 10,
                  "name": "Eastbound"
                },
                {
                  "id": 11,
                  "name": "Westbound"
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

On this page