Skip to main content
POST
/
v1
/
sensors
/
list
Get all sensors
curl --request POST \
  --url https://api.samsara.com/v1/sensors/list \
  --header 'Authorization: Bearer <token>'
{
  "sensors": [
    {
      "id": 123,
      "macAddress": "11:11:11:11:11:11",
      "name": "Freezer ABC"
    }
  ]
}

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 sensor objects.

sensors
object[]