Skip to main content

Charging Station Management

This module is the root logical entity that physically groups the Charging Points.


List Charging Stations

Returns a paginated list of stations, optimized for plotting on mobile applications. The endpoint calculates the aggregated availability of the connectors.

GET /charging-station

Success Response (200 OK)
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Central Charging Station",
"address": "Av. Paulista, 1000",
"status": "available",
"charge_points_count": 4
}
],
"meta": {
"current_page": 1,
"last_page": 5,
"total": 50
}
}