GET
/
vehicles
/
{id}
/
{make}
/
virtual_key
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/virtual_key" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
    "isPaired": true
}
This endpoint is currently available for tesla

Permission

read_vehicle_info

Request

Path
id
string
required
The vehicle ID of the vehicle you are making a request to.
make
string
required
The make of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/{make}/virtual_key" \
-H "Authorization: Bearer {token}" \
-X "GET"

Response

isPaired
boolean
Returns true if the vehicle has the appropriate Virtual Key installed. See Tesla - What’s New for more details on Tesla’s virtual key requirements.
{
    "isPaired": true
}

Notes