moovexDocs

Get fare

Retrieve a single fare by id.

GET/fares/single/{id}

Path Parameters

ParameterTypeDescription
idstringNumeric id of the fare

Example Response

{
  "name": "Airport to City Center",
  "groupId": 5,
  "servicesIds": [
    3
  ],
  "fromAreaIds": [
    2
  ],
  "toAreaIds": [
    4
  ],
  "biDirectional": true,
  "distance": [
    15,
    25
  ],
  "start": 1715000000,
  "end": 1717600000,
  "weekDays": [
    0,
    1
  ]
}

On this page