Access more than 200 endpoints of manufacturer-approved car connected data for your business in just a few minutes, 100% digital.
TEST NOWWith mobway, you can integrate your system with multiple automakers to offer owners the ability to connect their vehicles to your product, in compliance with LGPD, using a single data standard and free from the informality of telemetry.
Click on add vehicles
Log in to the account of the vehicle manufacturers you want to connect to your service
Select the vehicles you want to connect to the service, you can use a spreadsheet to select large fleets at once
View the data that the service wants to collect from your vehicles and give consent for the collection
Have the vehicles integrated into your product!
Your business can grow much faster, more dynamically and cheaper with Mobway! Here are some of the markets that we serve
Greater compliance in claims validation and new forms of pricing based on driving profile.
Data: speed, geolocation, pedal inputs, steering wheel movement, accelerometer, safety sensor usage, collision detection and more than 200.
Zero out your operating costs with telematics, connect entire fleets in minutes and gain new insights into vehicle usage with data not available with traditional telemetry.
Data: geolocation, speed, rpm, number of occupants in vehicle, tire pressure, fuel level and consumption, SoC battery lv, mechanical failures, and 200+.
Opening and closing of doors, detection of misuse, theft and faults.
Data: geolocation, collision detection, door status, electrical and mechanical faults, number of passengers, fuel consumption.
Reduced depreciation, reduced fraud and pre-sale inspection with your historical data, post-sale relationship with real-time data.
Data: fault detection, RPM, accelerometer, collision detection, odometer and 200+.
Improve the customer's experience with the dealership by proactively engaging with them when they identify the need for preventive or corrective service on the vehicle.
Data: mechanical faults, electrical faults, odometer, oil level, radiator water level and 200+.
Improve safety, compliance, and pricing with real-time fuel consumption data.
Data: number of occupants in vehicle, collision detection, speed, geolocation, accelerometer, pedal inputs, steering, fuel consumption and 200+.
Trip planning and EV charging management, parking theft alerts, remote vehicle monitoring and targeted advertising.
Data: geolocation, HV battery SoC, charging status, alarm status, oil level, tire pressure, door status and 200+.
Trip planning and EV charging management, parking theft alerts, remote vehicle monitoring and targeted advertising.
Data: geolocation, HV battery SoC, charging status, alarm status, oil level, tire pressure, door status and 200+.
Improve safety, compliance, and pricing with real-time fuel consumption data.
Data: number of occupants in vehicle, collision detection, speed, geolocation, accelerometer, pedal inputs, steering, fuel consumption and 200+.
Improve the customer's experience with the dealership by proactively engaging with them when they identify the need for preventive or corrective service on the vehicle.
Data: mechanical faults, electrical faults, odometer, oil level, radiator water level and 200+.
Reduced depreciation, reduced fraud and pre-sale inspection with your historical data, post-sale relationship with real-time data.
Data: ault detection, RPM, accelerometer, collision detection, odometer and 200+.
Opening and closing of doors, detection of misuse, theft and faults.
Data: geolocation, collision detection, door status, electrical and mechanical faults, number of passengers, fuel consumption.
Greater compliance in claims validation and new forms of pricing based on driving profile.
Data: speed, geolocation, pedal inputs, steering wheel movement, accelerometer, safety sensor usage, collision detection and more than 200.
Zero out your operating costs with telematics, connect entire fleets in minutes and gain new insights into vehicle usage with data not available with traditional telemetry.
Data: geolocation, speed, rpm, number of occupants in vehicle, tire pressure, fuel level and consumption, SoC battery lv, mechanical failures, and 200+.
Developer-friendly SDK to reduce integration time
LGPD compliance with owner consent validation via automaker SSO
One data standard, all automakers
Real-time or batch data collection, integrated via API or CSV
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'failure_log', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"failure_log": "401",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"failure_log": "401",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'failure_log', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'failure_log', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'front_left_door_status', 'front_right_door_status', 'rear_left_door_status', 'rear_right_door_status', 'trunk_status', 'hood_status', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Open",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Locked",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'front_left_tire_pressure', 'front_right_tire_pressure', 'rear_left_tire_pressure', 'rear_right_tire_pressure', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'passengers', 'left_front_seat_status', 'right_front_seat_status', 'left_rear_seat_status', 'right_rear_seat_status', 'center_rear_seat_status', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'soc_hv_battery', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"soc_hv_battery": 0.87,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"soc_hv_battery": 0.87,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'fuel_level', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"fuel_level": 0.45,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"fuel_level": 0.44,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'latitude', 'longitude', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"latitude": 12.873,
"longitude": 02.429,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"latitude": 12.873,
"longitude": 02.428,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'rpm', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"rpm": 3225,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"rpm": 2317,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'lv_battery_voltage', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"lv_battery_voltage": 11.3,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"lv_battery_voltage": 11.3,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'odometer', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"odometer": 23302,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"odometer": 23303,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
export const request = require('request');
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
body: {
vins: ['vin001'],
datapoints: ['timestamp', 'speed', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"speed": 23,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"speed": 45,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'front_left_door_status', 'front_right_door_status', 'rear_left_door_status', 'rear_right_door_status', 'trunk_status', 'hood_status', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Open",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Locked",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'front_left_tire_pressure', 'front_right_tire_pressure', 'rear_left_tire_pressure', 'rear_right_tire_pressure', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'passengers', 'left_front_seat_status', 'right_front_seat_status', 'left_rear_seat_status', 'right_rear_seat_status', 'center_rear_seat_status', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'soc_hv_battery', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"soc_hv_battery": 0.87,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"soc_hv_battery": 0.87,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'fuel_level', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"fuel_level": 0.45,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"fuel_level": 0.44,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'latitude', 'longitude', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"latitude": 12.873,
"longitude": 02.429,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"latitude": 12.873,
"longitude": 02.428,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'rpm', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"rpm": 3225,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"rpm": 2317,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'lv_battery_voltage', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"lv_battery_voltage": 11.3,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"lv_battery_voltage": 11.3,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'odometer', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"odometer": 23302,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"odometer": 23303,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import axios from "axios";
export const options = {
method: 'POST',
url: 'https://mobway.com/vehicles',
headers: {'Content-Type': 'application/json', auth: 'example'},
data: {
vins: ['vin001'],
datapoints: ['timestamp', 'speed', 'date', 'hour'],
start_date: '2022-09-13 11:00:00',
end_date: '2022-09-13 11:01:00'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"speed": 23,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"speed": 45,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles
--header 'Content-Type: application/json'
--header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "failure_log", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"failure_log": "401",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"failure_log": "401",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles
--header 'Content-Type: application/json'
--header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "front_left_door_status",
"front_right_door_status", "rear_left_door_status",
"rear_right_door_status", "trunk_status",
"hood_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Open",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Locked",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles
--header 'Content-Type: application/json'
--header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "passengers",
"left_front_seat_status", "right_front_seat_status",
"left_rear_seat_status", "right_rear_seat_status",
"center_rear_seat_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles
--header 'Content-Type: application/json'
--header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "passengers",
"left_front_seat_status", "right_front_seat_status",
"left_rear_seat_status", "right_rear_seat_status",
"center_rear_seat_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"passengers": 3,
"left_front_seat_status": "Occupied",
"right_front_seat_status": "Occupied",
"Left_rear_seat_status": "Empty",
"right_rear_seat_status": "Empty",
"center_rear_seat_status": "Occupied",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "soc_hv_battery", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"soc_hv_battery": 0.87,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"soc_hv_battery": 0.87,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "fuel_level", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"fuel_level": 0.45,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"fuel_level": 0.44,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "latitude", "longitude", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"latitude": 12.873,
"longitude": 02.429,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"latitude": 12.873,
"longitude": 02.428,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "rpm", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"rpm": 3225,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"rpm": 2317,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "lv_battery_voltage", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"lv_battery_voltage": 11.3,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"lv_battery_voltage": 11.3,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "odometer", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"odometer": 23302,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"odometer": 23303,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
curl --request POST --url https://mobway.com/vehicles --header 'Content-Type: application/json' --header 'auth: example' --data '{
"vins": ["vin001"],
"datapoints": ["timestamp", "speed", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}'
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"speed": 23,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"speed": 45,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "failure_log", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"failure_log": "401",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"failure_log": "401",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "front_left_door_status", "front_right_door_status", "rear_left_door_status", "rear_right_door_status", "trunk_status", "hood_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Open",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_door_status": "Locked",
"front_right_door_status": "Locked",
"rear_left_door_status": "Locked",
"rear_right_door_status": "Locked",
"trunk_status": "Locked",
"hood_status": "Locked",
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "front_left_tire_pressure", "front_right_tire_pressure", "rear_left_tire_pressure", "rear_right_tire_pressure", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"front_left_tire_pressure": 28,
"front_right_tire_pressure": 29,
"rear_left_tire_pressure": 31,
"rear_right_tire_pressure": 31,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "passengers", "left_front_seat_status", "right_front_seat_status", "left_rear_seat_status", "right_rear_seat_status", "center_rear_seat_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "passengers", "left_front_seat_status", "right_front_seat_status", "left_rear_seat_status", "right_rear_seat_status", "center_rear_seat_status", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "soc_hv_battery", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"soc_hv_battery": 0.87,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"soc_hv_battery": 0.87,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "fuel_level", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"fuel_level": 0.45,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"fuel_level": 0.44,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "latitude", "longitude", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"latitude": 12.873,
"longitude": 02.429,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"latitude": 12.873,
"longitude": 02.428,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "rpm", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"rpm": 3225,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"rpm": 2317,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "lv_battery_voltage", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"lv_battery_voltage": 11.3,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"lv_battery_voltage": 11.3,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "odometer", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"odometer": 23302,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"odometer": 23303,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]
import requests
url = "https://mobway.com/vehicles"
payload = {
"vins": ["vin001"],
"datapoints": ["timestamp", "speed", "date", "hour"],
"start_date": "2022-09-13 11:00:00",
"end_date": "2022-09-13 11:01:00"
}
headers = {
"Content-Type": "application/json",
"auth": "example"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
[
{
"datapoints": [
{
"date": 1663027200000,
"hour": "11:00:43",
"speed": 23,
"timestamp": 1663066843000
},
{
"date": 1663027200000,
"hour": "11:00:52",
"speed": 45,
"timestamp": 1663066852000
}
],
"vin": "vin001"
}
]