Protocol support
Every protocol. One integration.
REST API
JSON over HTTPS. OAuth 2.0. Rate limit 1,000 req/min per key. OpenAPI 3.1 spec downloadable from the portal.
GET /v1/chargers — list fleet
GET /v1/chargers/{id}/status
POST /v1/sessions — start session
DELETE /v1/sessions/{id} — stop
GET /v1/sessions — history + CDRs
PATCH /v1/tariffs/{site_id}
GET /v1/vendors — operator view
POST /v1/payouts/preview
# List all chargers in a site
GET /v1/chargers?site_id=BLR-IND
# 200 OK
{
"chargers": [
{
"id": "BLR-014",
"model": "MX-EV-22",
"status": "available",
"connectors": [
{
"id": 1,
"type": "Type2",
"status": "Available",
"power_kw": 22
}
]
}
],
"total": 12
}Integration