# Get Charger Details Gets detailed information about a specific charger by ID, including technical specifications and current operational status. Requires a valid API key. Endpoint: GET /charger/{id} Version: v1 Security: BearerAuth ## Path parameters: - `id` (string, required) A UUID string identifying this Charger. ## Response 200 fields (application/json): - `id` (string) Unique identifier for the charger - `custom_id` (string,null) Custom identifier for the charger - `charger_point_id` (string) Charger point identifier - `status` (object) Current status of the charger - `status.key` (string) - `status.value` (string) - `payment_type` (string) Whether charging is paid or free Enum: "PAID", "FREE" - `customer_qr_code` (string,null) QR code for customer access - `ports` (array, required) List of ports on this charger - `ports.id` (string) Unique identifier for the port - `ports.connector_id` (integer,null) Connector ID for OCPP - `ports.max_power` (number, required) Maximum power output - `ports.power` (number) Current power output - `ports.max_current` (string) Maximum current - `ports.current` (string) Current output - `ports.charging_speed` (number, required) Current charging speed - `ports.connector_type` (object) Type of connector - `ports.charging_start_at` (string) When charging started - `ports.connected_user_email` (string) Connected user email - `manufacturer` (string, required) Manufacturer information - `model` (string, required) Model information - `location_id` (string,null) Location identifier - `rfid_required` (boolean,null, required) Whether RFID is required to use this charger - `number_phases` (integer) Number of electrical phases Enum: 1, 3