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
}
Returns the weather forecast around a vehicle.
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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The associated VIN.
Success
The response is of type object
.