connect to vehicles without installing hardware telemetry

Access more than 200 endpoints of manufacturer-approved car connected data for your business in just a few minutes, 100% digital.

TEST NOW

We are a vehicle data platform connected to OEMs

With 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.

More than 200 vehicle data points!

CarS
MotoRCYCLE
TRUCKS

Connect to your product in a few minutes

step_01

Click on add vehicles

Confira nossas vantagens

Check out our advantages

Provider of
telemetry
Hardware installation
Datapoints from the vehicle
+200
~10
Time required to connect fleet
~5 minutes
~Days / Weeks
Plans by subscription
Plans by volume of data consumed
Automaker-approved data
LGPD compliance
No minimum contract/recall fee

we integrate with the most important service providers in the mobility sector

Your business can grow much faster, more dynamically and cheaper with Mobway! Here are some of the markets that we serve

Document

Infrastructure and e-mobility

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+.

transportation and delivery

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+.

dealerships and repair shops

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+.

used cars

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+.

car rental and car sharing

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.

insurance and insurtech

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.

fleet management

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+.

simplified integration with your system

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

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
fault log
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);
  });
Resposta
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);
  });
NodeJS
fault log
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);
  
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
door status
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
tire pressure
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
number of passengers
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
hv battery
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
fuel
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
geolocation
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);
  });

Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "rpm": 3225,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "rpm": 2317,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
NodeJS
rpm
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);
  });
Resposta
[
    {
      "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"
    }
  ]
NodeJS
lv battery
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);
  });
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "odometer": 23302,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "odometer": 23303,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
NodeJS
odometer

  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);
  });
  
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "speed": 23,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "speed": 45,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
  

NodeJS
speed
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
door status
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
tire pressure
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
number of passengers
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
hv battery
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
fuel
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
geolocation
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);
  });
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "rpm": 3225,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "rpm": 2317,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Javascript
rpm
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);
  });
Resposta
[
    {
      "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"
    }
  ]
Javascript
lv battery
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);
  });
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "odometer": 23302,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "odometer": 23303,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Javascript
odometer
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);
  });
  
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "speed": 23,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "speed": 45,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
  
Javascript
speed
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" }'
Resposta
[
    {
      "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"
    }
  ]
Shell
fault log
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" }'
Resposta
[
    {
      "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"
    }
  ]
Shell
door status
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" }'
Resposta
[
    {
      "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"
    }
  ]
Shell
tire pressure
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" }'
Resposta
[
    {
      "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"
    }
  ]
Shell
number of passengers
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"
  }'
Resposta
[
    {
      "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"
    }
  ]
Shell
hv battery
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"
  }'
Resposta
[
    {
      "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"
    }
  ]
Shell
fuel
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"
  }'
Resposta
[
    {
      "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"
    }
  ]
Shell
geolocation
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"
  }'
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "rpm": 3225,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "rpm": 2317,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Shell
rpm
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"
  }'
Resposta
[
    {
      "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"
    }
  ]
Shell
lv battery
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"
  }'
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "odometer": 23302,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "odometer": 23303,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Shell
odometer
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"
  }'
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "speed": 23,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "speed": 45,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
  
Shell
speed
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)
Resposta
[
    {
      "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"
    }
  ]
Python
fault log
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)
Resposta
[
    {
      "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"
    }
  ]
Python
door status
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)
Resposta
[
    {
      "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"
    }
  ]
Python
tire pressure
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)
Resposta
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)
Python
number of passengers
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)
Resposta
[
    {
      "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"
    }
  ]
Python
hv battery
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)
Resposta
[
    {
      "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"
    }
  ]
Python
fuel
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)
Resposta
[
    {
      "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"
    }
  ]
Python
geolocation
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)
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "rpm": 3225,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "rpm": 2317,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Python
rpm
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)
Resposta
[
    {
      "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"
    }
  ]
Python
lv battery
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)
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "odometer": 23302,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "odometer": 23303,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
Python
odometer
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)
  
Resposta
[
    {
      "datapoints": [
        {
          "date": 1663027200000,
          "hour": "11:00:43",
          "speed": 23,
          "timestamp": 1663066843000
        },
        {
          "date": 1663027200000,
          "hour": "11:00:52",
          "speed": 45,
          "timestamp": 1663066852000
        }
      ],
      "vin": "vin001"
    }
  ]
  
Python
speed

boost your business with vehicle data quickly and securely!

SCHEDULE A DEMO