GET
/
v2.0
/
vehicles
/
{id}
/
location
curl "https://api.smartcar.com/v2.0/vehicles/{id}/location" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
  "latitude": 37.4292,
  "longitude": 122.1381
}
The Vehicles API v2.0 will be deprecated by Q3 of 2026. We recommend migrating to the latest version as soon as possible to ensure continued support and access to new features.

Permission

read_location

Request

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

Response

latitude
number
The latitude in degrees.
longitude
number
The longitude in degrees.
{
  "latitude": 37.4292,
  "longitude": 122.1381
}