REST API
Learn how to use the Vehicle Data API to retrieve car data
1. Create an application
2. Create a simulator
3. Link Vehicle and Retrieve Access Token
4. Send a Request
const request = require('request')
request.get({
url: 'https://sandbox.api.high-mobility.com/v1/vehicle-data/autoapi-13/{vin}',
headers: {
Authorization: 'Bearer ' + accessToken
}
}, (error, response, body) => {
console.log('error:', error)
console.log('statusCode:', response && response.statusCode)
console.log('body:', body)
})
Last updated
Was this helpful?

