Skip to content

Retrieve a vehicle's charging connectors

Request

Retrieve the vehicle's DC-fast charging connectors: its native plug and any adapters it carries. native_connector is the per-vehicle value, falling back to the vehicle model's default when not overridden (both may be null when not yet known).

Security
oauth2(Required scopes: vehicle:read)
Path
vehicle_idstringvhcl[A-Z\d]{26}required

The ID of the specific vehicle to retrieve.

Example:vhcl01HRFF3SEVSCRAV9B3CHVDFN0H
Headers
EvEnergy-Versionnumber

Specify the version of this endpoint to use.

Value:2
curl -i -X GET \
  https://developers.ev.energy/_mock/ev.energy-api-v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H/connectors \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'EvEnergy-Version: 2'

Responses

Returns the vehicle's connector configuration.

Headers
EvEnergy-Versionnumber

Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.

Value:2
X-RateLimit-Limitnumber

The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.

Default:1000
X-RateLimit-Remainingnumber

The number of requests remaining until this client's rate limit is reached.

Default:999
RetryAfternumber

The number of seconds until this client's requests will not be rate limited.

Default:3600
Bodyapplication/json
urlstring, (uri)read-onlyrequired
Example:"https://api.ev.energy/v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H/connectors"
vehiclestring, (uri)read-onlyrequired
Example:"https://api.ev.energy/v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H"
native_connectorstring or nullrequired

The vehicle's built-in DC-fast plug. A per-vehicle override, falling back to the model's default connector when unset; null when not yet known.

Enum:"CCS""NACS""CHADEMO"null
adaptorsArray of stringsrequired

Additional connectors usable via an adapter. Empty when none.

Items Enum:"CCS""NACS""CHADEMO"
updated_atstring or null, (date-time)read-onlyrequired
Response
{ "url": "https://api.ev.energy/v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H/connectors", "vehicle": "https://api.ev.energy/v2/vehicles/vhcl01HRFF3SEVSCRAV9B3CHVDFN0H", "native_connector": "CCS", "adaptors": [ "CCS" ], "updated_at": "2019-08-24T14:15:22Z" }