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

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.

Path Parameters

asset_id
integer<int64>
required

ID of the asset. Must contain only digits 0-9.

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.

Response

Reefer-specific asset details.

Reefer-specific asset details

assetType
string

Asset type

Example:

"Thermo King"

id
integer

Asset ID

Example:

1

name
string

Asset name

Example:

"Reefer 123"

reeferStats
object