# List Chargers Retrieves a list of all available chargers with their current status and locations. Requires a valid API key. Endpoint: GET /charger Version: v1 Security: BearerAuth ## Query parameters: - `created_at` (string) Filter by creation date - `is_active` (string) Filter by active status - `location` (string) Filter by location - `status` (string) Filter by charger status Enum: "DISABLED", "AVAILABLE", "STANDBY", "CHARGING", "OFFLINE", "FAULTED", "RESERVED", "UNAVAILABLE" - `number_phases` (string) Filter by number of phases Enum: "1", "3" - `current_type` (string) Filter by current type Enum: "AC", "DC", "NACS" - `limit` (integer) Number of results to return per page - `offset` (integer) The initial index from which to return the results ## Response 200 fields (application/json): - `count` (integer, required) - `next` (string,null) - `previous` (string,null) - `results` (array, required) - `results.id` (string) Unique identifier for the charger - `results.custom_id` (string,null) Custom identifier for the charger - `results.charger_point_id` (string) Charger point identifier - `results.status` (object) - `results.status.key` (string) - `results.status.value` (string) - `results.location_name` (string,null, required) Name of the location where charger is installed - `results.temperature` (number) Current temperature of the charger - `results.payment_type` (string) Whether charging is paid or free Enum: "Paid", "Free" - `results.id_tag_required` (boolean) Whether ID tag is required to use this charger - `results.customer_qr_code` (string,null, required) QR code for customer access - `results.ports` (array, required) List of ports on this charger - `results.ports.id` (string) Unique identifier for the port - `results.ports.connector_id` (integer,null) Connector ID for OCPP - `results.ports.max_power` (number, required) Maximum power output - `results.ports.charge_current_kilowatt_hour` (number,null, required) Current charge rate in kWh - `results.ports.charging_start_at` (string) When charging started - `results.ports.connected_user_email` (string) Connected user email - `results.charger_group` (string,null) Group this charger belongs to