Compatibility API (Legacy)
By VIN (Deprecated)
Compatibility will vary by model, year, and trim. This API is for reference purposes only and it showcases vehicle makes and models that may be compatible with Smartcar and it does not guarantee that a specific vehicle will be compatible.
GET
Compatibility by VIN allows developers to determine if a specific vehicle could be compatible with Smartcar.
A vehicle is capable of a given feature if:
Parameters
- The vehicle supports the feature (e.g., a Ford Escape supports /fuel but a Mustang Mach-e does not)
- Smartcar supports the feature for the vehicle’s make
capabilities for VINs in Canada and Europe.
Request
Headersstring
default:"Basic "
required
The HTTP Authorization header using the Basic authentication scheme.To construct the Authorization header value:
- Join your
client_idandclient_secretwith a single colon (:). - Base64-encode the resulting string:
base64({client_id}:{client_secret}) - Prepend
Basic(with a trailing space) to the encoded string.
Basic bXktY2xpZW50LWlkOm15LWNsaWVudC1zZWNyZXQ=string
required
The VIN (Vehicle Identification Number) of the vehicle.
string
required
A space-separated list of permissions.
string
default:"US"
An optional country code string according to ISO 3166-1 alpha-2.
Response
boolean
true if the vehicle is likely compatible, false otherwise.string | null
One of the reasons described below if compatible is
false, null otherwisearray
An array containing capability objects for the set of endpoints that the provided scope value can provide authorization for.
This array will be empty if
compatible is false.A vehicle’s compatibility depends on many factors such as its make, model, model year, trim, etc. The API optimizes returning false positives.

