Get a paginated list of EV Charger devices with their last pull state
cURL
curl --request GET \ --url https://api.example.com/ev-charger \ --header 'x-api-key: <api-key>'
{ "items": [ { "id": "<string>", "vendor": "<string>", "sync": { "available": true, "lastPulledAt": "<string>" }, "metadata": { "model": "<string>", "source": "cache", "cacheType": "expedite" }, "state": { "status": "available", "isConnected": true, "isCharging": true, "currentPower": 123, "maxCurrent": 123, "powerRateLimit": 123 }, "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
EV Charger devices retrieved successfully
Show child attributes