GET
/
charging_stations
/
{charging_station}
curl --request GET \
  --url https://api.chargeapi.co/v1/charging_stations/{charging_station} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "id": null,
  "object": null,
  "address": {
    "city": null,
    "country": null,
    "line1": null,
    "line2": null,
    "postal_code": null,
    "state": null
  },
  "availability": {
    "connectors_total": null,
    "connectors_available": null,
    "opening_hours": [
      {
        "day": null,
        "from": null,
        "until": null
      }
    ],
    "range": [
      {
        "from": null,
        "until": null
      }
    ]
  },
  "capabilities": {
    "24_7_access": null,
    "amenities": null,
    "payment_methods": null,
    "requires_membership": null,
    "reservable": null
  },
  "connectors": [
    {
      "id": null,
      "power": null,
      "status": null,
      "type": null
    }
  ],
  "created": null,
  "location": {
    "latitude": null,
    "longitude": null
  },
  "name": null,
  "operator": null,
  "operator_contact": null,
  "pricing": [
    {
      "type": null,
      "currency": null,
      "tax": null,
      "price": null,
      "step_size": null
    }
  ],
  "status": null,
  "updated": null
}

Path Parameters

charging_station
string
required

ID of the charging station to retrieve.

Body

application/json · object

Response

200
application/json

Returns the Charging Station object for a valid identifier. Raises an error otherwise.