Get a paginated list of vehicle devices with their last pull state
cURL
curl --request GET \ --url https://api.example.com/vehicle \ --header 'x-api-key: <api-key>'
{ "items": [ { "id": "<string>", "vendor": "<string>", "sync": { "available": true, "lastPulledAt": "<string>" }, "metadata": { "model": "<string>", "source": "cache", "cacheType": "expedite" }, "state": { "batteryLevel": 50, "range": 1, "plugged": true, "charging": true, "fullyCharged": true, "batteryCapacity": 1, "chargeLimit": 50, "chargeRate": 123, "chargeTimeRemaining": 1, "maxCurrent": 1 }, "features": { "pull": [ { "key": "<string>", "min": 123, "max": 123 } ], "push": [ { "key": "<string>", "min": 123, "max": 123 } ] } } ], "pagination": { "limit": 123, "offset": 123, "total": 123, "hasMore": true } }
Filter devices by userId
"user_abc123"
Number of devices to skip (default: 0)
0
Maximum number of devices to return (1-50, default: 10)
10
Vehicle devices retrieved successfully
Show child attributes