Skip to main content
GET
/
v3
/
public-charging
/
chargers
/
{code}
Get Public Charger
curl --request GET \
  --url https://app.plugchoice.com/api/v3/public-charging/chargers/{code} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "public_code": "<string>",
    "name": "<string>",
    "online": true,
    "connectors": [
      {
        "connector_id": 123,
        "status": "<string>",
        "standard": "<string>",
        "format": "<string>",
        "power_type": "<string>"
      }
    ],
    "pricing": {
      "currency": "<string>",
      "price_per_kwh": 123,
      "start_fee": 123
    },
    "preauth_amount": 123
  }
}
Returns the driver-facing details of a public charger by its public code, including connectors and pricing. This endpoint does not require authentication and is rate limited to 30 requests per minute. Returns 404 for unknown codes and for chargers that do not have public charging available.
code
string
required
The public code of the charger. Case-insensitive.

Response

data
object
The public charger card.