Skip to main content
GET
/
v1
/
fleet
/
maintenance
/
list
Get vehicles with engine faults or check lights
curl --request GET \
  --url https://api.samsara.com/v1/fleet/maintenance/list \
  --header 'Authorization: Bearer <token>'
{
  "vehicles": [
    {
      "id": 112,
      "j1939": {
        "checkEngineLight": {
          "emissionsIsOn": true,
          "protectIsOn": true,
          "stopIsOn": true,
          "warningIsOn": true
        },
        "diagnosticTroubleCodes": [
          {
            "fmiId": 123,
            "fmiText": "<string>",
            "occurrenceCount": 123,
            "spnDescription": "<string>",
            "spnId": 123,
            "txId": 123
          }
        ]
      },
      "passenger": {
        "checkEngineLight": {
          "isOn": true
        },
        "diagnosticTroubleCodes": [
          {
            "dtcDescription": "<string>",
            "dtcId": 123,
            "dtcShortCode": "<string>"
          }
        ]
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of vehicles and maintenance information about each.

vehicles
object[]