List vehicle compatibility records for a specific program.
Returns all active vehicle models that are supported by the given program.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/programs/{program_id}/vehicle_compatibility
- Live API for both production and sandbox requests.https://api.ev.energy/v2/programs/{program_id}/vehicle_compatibility
- Staging server for internal testing only.https://api-staging.ev.energy/v2/programs/{program_id}/vehicle_compatibility
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/programs/{program_id}/vehicle_compatibility?expand=model' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-User: user01HN2NJ9NMRZBXT1H6FT9N7735' \
-H 'EvEnergy-Version: 2'Return a list of vehicle compatibility records for the program.
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.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
Whether ev.energy can control charging for this vehicle model.
Link to the vehicle model by default. Expanded to full object when ?expand=model is used.
The vehicle type: BEV (Battery Electric Vehicle) or PHEV (Plug-in Hybrid Electric Vehicle).
List of ISO 3166-1 alpha-2 country codes this vehicle is compatible in.
[ "US", "CA" ]
[ { "can_control_charge": true, "model": "https://api.ev.energy/v2/vehicle_models/vmod01HSBR8Z36GD7A46K7M4R12VG0", "type": "BEV", "supported_countries": [ … ], "start_year": 2020, "end_year": 2026 } ]