GET
/
{vin}
/
weather
Get Weather
curl --request GET \
  --url https://api.tessie.com/{vin}/weather \
  --header 'Authorization: Bearer <token>'
{
  "location": "Fremont",
  "condition": "Clear",
  "temperature": 22.77,
  "feels_like": 21.26,
  "humidity": 91,
  "visibility": 10000,
  "pressure": 1017,
  "sunrise": 1672757473,
  "sunset": 1672793687,
  "cloudiness": 25,
  "wind_speed": 8.23,
  "wind_direction": 160
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

vin
string
required

The associated VIN.

Response

200 - application/json

Success

The response is of type object.