GET
/
device
curl --request GET \
  --url https://api.pathstack.io/device \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "system_device_id": "<string>",
      "registration": "<string>",
      "make": "<string>",
      "model": "<string>",
      "year": 123,
      "active": true,
      "tags": [
        "<string>"
      ],
      "id": "<string>",
      "connection_id": "<string>"
    }
  ],
  "links": {
    "previous": "<string>",
    "current": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Headers

x-api-version
string
default:2024-03-27
Examples:

"2024-03-27"

Query Parameters

telematics_provider
enum<string>

Name of the telematics provider

Available options:
mtdata,
geotab,
navman,
mixtelematics,
radius,
verizon_connect,
volvo,
fleetsu,
digital_matter,
netstar,
webfleet,
scania,
linxio,
geoforce
connection_id
string

Connection ID of data provider

tags
string[]

Tags to include. Use query parameters e.g ?tags=a&tags=b to filter for Devices with tags 'a' and 'b'.

page
integer
default:0

Page number for pagination (zero-indexed)

Required range: x >= 0

Response

200
application/json

Successful Response

The response is of type object.