v1

latestOpenAPI 3.1.02026-07-2617501.1 MB

List mileage summary of vehicles

get/v1/ifta/summary

Query parameters

jurisdictionsstring[]

Specify the jurisdiction to fetch the trip reports for only the specified jurisdiction.

vehicle_ids[]integer[]

Specify either one or multiple vehicle IDs to fetch the list of IFTA trip reports corresponding to the specified vehicles.

start_datestring date

Specify the start date for the report. Default: TODAY - 7 DAYS AGO

end_datestring date

Specify the end date for the report. Default: TODAY

fuel_typestring

Specify the vehicle fuel type for which you want to view the IFTA reports. Acceptable values are Diesel, Gasoline, Propane, LNG, CNG, Ethanol, Methanol, E85, M85, A55, Biodiesel, and Others.

per_pageinteger

Number of records to return per page.

page_nointeger

Current page number.

Response

200

Example response

{
  "ifta_trips": [
    {
      "ifta_trip": {
        "jurisdiction": "CA",
        "vehicle": {
          "id": 4,
          "number": "Demo Vehicle",
          "year": "2016",
          "make": "Demo",
          "model": "Vehicle",
          "vin": "WP0AB2966NS458669"
        },
        "distance": 0.6835081,
        "time_zone": "Pacific Time (US & Canada)"
      }
    }
  ],
  "pagination": {
    "per_page": 25,
    "page_no": 1,
    "total": 2
  }
}