Skip to main content
GET
/
fleet
/
equipment
/
{id}
Retrieve a unit of equipment
curl --request GET \
  --url https://api.samsara.com/fleet/equipment/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "112",
    "assetSerial": "1FUJA6BD31LJ09646",
    "externalIds": {
      "maintenanceId": "250020",
      "payrollId": "ABFS18600"
    },
    "installedGateway": {
      "model": "Ag26",
      "serial": "<string>"
    },
    "name": "Crane A7",
    "notes": "These are notes about this given equipment.",
    "tags": [
      {
        "id": "3914",
        "name": "East Coast",
        "parentTagId": "4815"
      }
    ]
  }
}

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

id
string
required

Samsara ID of the Equipment.

Response

The specified equipment object

A response containing an equipment object.

data
object
required

An equipment object.