Skip to main content

location

Location
  • Description: latitude, longitude, date, and time when the command was executed on the vehicle.
  • Latitude and Longitude:
    • Format: numeric
    • Unit: °
    • Decimal places: 7
    • Data processed by mobway will always have at most 7 decimal places. However, the precision of the original data depends on the automaker. The data may show fewer than 7 decimal places when it ends in 0 because of automatic float formatting.
  • Date and Time:
    • Format: yyyy-mm-dd hh:mm:ss
    • Time zone: UTC -3 (Brasí­lia Time)
    • This is the date and time when the command was executed on the vehicle. It is not the date and time when the command reached the automaker’s database. When the time provided by the vehicle is in another time zone, it will be converted to UTC -3.
  • Example:
{
  "id": "8619b2df-1d68-40e1-8760-cf36f06d00b5",
  "vin": "6AHFT68CKAF501652",
  "command": "diagnostics",
  "status": "Success",
  "detail": {
    "latitude": 34.0567236,
    "longitude": -118.2451370,
    "date_time": "2023-02-14 09:52:48"
  },
  "updated": "2023-02-14 09:53:48"
}

diagnostics

Diagnostics
  • Description: the vehicle’s current state, including some available data points and the date and time when the command was executed on the vehicle.
  • Data Points:
    • Format: dictionary (key and value)
    • The definition of each data point follows what is described here. Availability depends on the vehicle model and year.
  • Date and Time:
    • Format: yyyy-mm-dd hh:mm:ss
    • Time zone: UTC -3 (Brasí­lia Time)
    • This is not the date and time when the command reached the automaker’s database. When the time provided by the vehicle is in another time zone, it will be converted to UTC -3.
  • Example:
{
  "id": "8619b2df-1d68-40e1-8760-cf36f06d00b5",
  "vin": "6AHFT68CKAF501652",
  "command": "diagnostics",
  "status": "Success",
  "detail": {
    "fuel_amount": 43.47,
    "fuel_capacity": 44.0,
    "fuel_level": 98.8,
    "fuel_range": 542.37,
    "ideal_front_tire_pressure": 34.81,
    "ideal_rear_tire_pressure": 34.81,
    "left_front_tire_pressure": 33.07,
    "left_front_tire_pressure_status": "nominal",
    "left_rear_tire_pressure": 31.91,
    "left_rear_tire_pressure_status": "nominal",
    "odometer": 76140.81,
    "oil_remaining_life": 53.3,
    "oil_remaining_life_status": "normal",
    "right_front_tire_pressure": 31.91,
    "right_front_tire_pressure_status": "nominal",
    "right_rear_tire_pressure": 31.33,
    "right_rear_tire_pressure_status": "nominal",
    "seat_belt_status": "not buckled",
    "system_power_mode": "off",
    "total_fuel_economy": 12.32,
    "total_fuel_used": 6766.5,
    "date_time": "2023-02-14 09:52:48"
  },
  "updated": "2023-02-14 09:53:48"
}