Skip to main content
GET
/
vehicle
/
{vin}
curl --request GET \
  --url https://api.mobway.cloud/vehicle/{vin} \
  --header 'Authorization: Bearer <token>'
	{
		"company": "mobway",
		"vin": "8DMBK45KGIC435803",
		"plate": "TBUJ740",
		"oem": "OEM 1",
		"model": "Modelo 1",
		"year": 2021,
		"status": "active",
		"created": "2021-04-20T12:42:44",
	}

Request

Header
token
string
required
The bearer token used to authenticate the company.
Path
vin
string
required
The Vehicle Identification Number (VIN) of the vehicle whose information you want to retrieve.

Response

company
string
The company to which the vehicle is connected.
vin
string
The Vehicle Identification Number (VIN).
plate
string
The vehicle’s license plate.
oem
string
The vehicle’s automaker (OEM).
model
string
The vehicle model.
year
number
The vehicle year.
status
enum
The vehicle’s connection status with mobway.
  • If “active”, the vehicle is connected and sending data.
created
datetime
Indicates when the vehicle connection with mobway was created.
curl --request GET \
  --url https://api.mobway.cloud/vehicle/{vin} \
  --header 'Authorization: Bearer <token>'
	{
		"company": "mobway",
		"vin": "8DMBK45KGIC435803",
		"plate": "TBUJ740",
		"oem": "OEM 1",
		"model": "Modelo 1",
		"year": 2021,
		"status": "active",
		"created": "2021-04-20T12:42:44",
	}