GET
/
vehicles
/
{vehicle}
curl --request GET \
  --url https://api.chargeapi.co/v1/vehicles/{vehicle} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "id": null,
  "object": null,
  "battery_capacity": null,
  "charging_standard": null,
  "created": null,
  "drivers": null,
  "information": {
    "make": "<string>",
    "model": "<string>",
    "year": "<string>"
  },
  "metadata": null,
  "registration_plate": null,
  "status": null,
  "telemetry": null,
  "updated": null,
  "vin": null
}

Path Parameters

vehicle
string
required

ID of the vehicle to retrieve.

Query Parameters

expand
string[]

Specifies related objects to expand (e.g., expand[]=drivers).

Body

application/json · object

Response

200
application/json

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