Skip to main content
GET
/
v1
/
fleet
/
assets
/
reefers
List stats for all reefers
curl --request GET \
  --url https://api.samsara.com/v1/fleet/assets/reefers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "assetType": "Thermo King",
      "id": 1,
      "name": "Reefer 123",
      "reeferStats": {
        "ambientAirTemperature": [
          {
            "changedAtMs": 1453449599999,
            "tempInMilliC": 31110
          }
        ],
        "dischargeAirTemperature": [
          {
            "changedAtMs": 1453449599999,
            "tempInMilliC": 31110
          }
        ],
        "engineHours": [
          {
            "changedAtMs": 1453449599999,
            "engineHours": 1200
          }
        ],
        "fuelPercentage": [
          {
            "changedAtMs": 1453449599999,
            "fuelPercentage": 99
          }
        ],
        "powerStatus": [
          {
            "changedAtMs": 1453449599999,
            "status": "Active (Continuous)"
          }
        ],
        "reeferAlarms": [
          {
            "alarms": [
              {
                "alarmCode": 102,
                "description": "Check Return Air Sensor",
                "operatorAction": "Check and repair at end of trip",
                "severity": 1
              }
            ],
            "changedAtMs": 1453449599999
          }
        ],
        "returnAirTemperature": [
          {
            "changedAtMs": 1453449599999,
            "tempInMilliC": 31110
          }
        ],
        "setPoint": [
          {
            "changedAtMs": 1453449599999,
            "tempInMilliC": 31110
          }
        ]
      }
    }
  ],
  "pagination": {
    "endCursor": "MTU5MTEzNjA2OTU0MzQ3",
    "hasNextPage": true,
    "hasPrevPage": true,
    "startCursor": "MTU5MTEzNjA2OTU0MzQ3"
  }
}

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.

Query Parameters

startMs
integer<int64>
required

Timestamp in milliseconds representing the start of the period to fetch, inclusive. Used in combination with endMs.

endMs
integer<int64>
required

Timestamp in milliseconds representing the end of the period to fetch, inclusive. Used in combination with startMs.

startingAfter
string

Pagination parameter indicating the cursor position to continue returning results after. Used in conjunction with the 'limit' parameter. Mutually exclusive with 'endingBefore' parameter.

endingBefore
string

Pagination parameter indicating the cursor position to return results before. Used in conjunction with the 'limit' parameter. Mutually exclusive with 'startingAfter' parameter.

limit
number<int64>

Pagination parameter indicating the number of results to return in this request. Used in conjunction with either 'startingAfter' or 'endingBefore'.

Response

All org reefers and reefer-specific details.

data
object[]
pagination
object