Skip to main content
GET
/
api
/
v2
/
vehicles
/
info
Vehicle info (V2)
curl --request GET \
  --url https://api.telemax.com.au/api/v2/vehicles/info \
  --header 'Authorization: Bearer <token>'
[
  {
    "label": "VIN",
    "value": "MPAUCS40GST011254"
  },
  {
    "label": "Vehicle ID",
    "value": "28193"
  },
  {
    "label": "Make",
    "value": "Isuzu"
  },
  {
    "label": "Model",
    "value": "MU-X"
  },
  {
    "label": "Model Year",
    "value": "2025"
  },
  {
    "label": "Product Type",
    "value": "Car"
  },
  {
    "label": "Body",
    "value": "Wagon"
  },
  {
    "label": "Drive",
    "value": "Rear-wheel drive"
  },
  {
    "label": "Engine Displacement (ccm)",
    "value": "2999"
  },
  {
    "label": "Engine Power (kW)",
    "value": "140"
  },
  {
    "label": "Engine Power (HP)",
    "value": "188"
  },
  {
    "label": "Fuel Type - Primary",
    "value": "Diesel"
  },
  {
    "label": "Engine Code",
    "value": "4JJ3-TCX"
  },
  {
    "label": "Transmission",
    "value": "Automatic"
  },
  {
    "label": "Number of Gears",
    "value": "6"
  },
  {
    "label": "Manufacturer",
    "value": "Isuzu Motors Company (Thailand) Limited"
  },
  {
    "label": "Manufacturer Address",
    "value": "38 Moo 9 Poojaosamingprai Road, ..."
  },
  {
    "label": "Plant Country",
    "value": "Thailand"
  },
  {
    "label": "Make Logo",
    "value": "https://api.vincario.com/img/make/isuzu.svg"
  },
  {
    "label": "Engine Compression Ratio",
    "value": "16.3"
  },
  {
    "label": "Engine Cylinder Bore (mm)",
    "value": "95.4"
  },
  {
    "label": "Engine Cylinders",
    "value": "4"
  },
  {
    "label": "Engine Cylinders Position",
    "value": "Inline"
  },
  {
    "label": "Engine Position",
    "value": "Front, Longitudinal"
  },
  {
    "label": "Engine RPM",
    "value": "3600"
  },
  {
    "label": "Engine Stroke (mm)",
    "value": "104.9"
  },
  {
    "label": "Engine Torque (RPM)",
    "value": "450"
  },
  {
    "label": "Engine Turbine",
    "value": "Turbocharger, Intercooler"
  },
  {
    "label": "Valve Train",
    "value": "DOHC"
  },
  {
    "label": "Fuel Capacity (l)",
    "value": "80"
  },
  {
    "label": "Fuel System",
    "value": "Diesel Commonrail"
  },
  {
    "label": "Valves per Cylinder",
    "value": "4"
  },
  {
    "label": "Number of Axles",
    "value": "2"
  },
  {
    "label": "Number of Doors",
    "value": "5"
  },
  {
    "label": "Number of Seats",
    "value": "7"
  },
  {
    "label": "Power Steering",
    "value": "Electric Steering"
  },
  {
    "label": "Steering Type",
    "value": "Steering rack and pinion"
  },
  {
    "label": "Wheelbase (mm)",
    "value": "2855"
  },
  {
    "label": "Width (mm)",
    "value": "1870"
  },
  {
    "label": "Ride Height (mm)",
    "value": "235"
  },
  {
    "label": "Track Front (mm)",
    "value": "1570"
  },
  {
    "label": "Track Rear (mm)",
    "value": "1570"
  },
  {
    "label": "Weight Empty (kg)",
    "value": "2800"
  },
  {
    "label": "ABS",
    "value": "1"
  },
  {
    "label": "Check Digit",
    "value": "G"
  },
  {
    "label": "Sequential Number",
    "value": "011254"
  }
]

Overview

Returns decoded vehicle information for a single vehicle, looked up by IMEI, legacy vehicle ID, or VIN. Exactly one of the three query parameters must be supplied. The response is a flat list of { label, value } pairs sourced directly from the Vincario VIN decode API, so all available fields are returned without a fixed schema. Common fields include make, model, engine specs, body dimensions, and manufacturer details. This is a new V2-only endpoint with no V1 equivalent.
Rate limit: 60 requests per 60 seconds per token.

Endpoint

GET /api/v2/vehicles/info

Query parameters

Exactly one of the following must be provided:
imei
string
Device IMEI.
id
integer
Legacy vehicle ID.
vin
string
Vehicle Identification Number.

Response

200 OKVinDecodeItemDto[] A flat list of label/value pairs. The set of labels returned depends on what Vincario has decoded for the vehicle.
FieldTypeDescription
labelstringField name (e.g. "Make", "Model Year", "Engine Power (kW)")
valuestringField value (always a string, even for numeric or array values)

Common labels

The set of labels returned depends on what Vincario has decoded for that VIN. Below are labels observed from actual API responses:
LabelExample value
VIN"MPBCMFF70RX582825"
Vehicle ID"1647"
Make"Ford"
Make ID"30"
Model"Ranger"
Model Year"2024"
Product Type"Car"
Body"Pickup"
Engine Displacement (ccm)"2993"
Engine Power (kW)"184"
Engine Power (HP)"247"
Fuel Type - Primary"Diesel"
Fuel Type"Petrol"
Transmission"Auto"
Number of Gears"10"
Manufacturer"Ford Motor Company (Thailand) Limited"
Manufacturer Address"33/19 Moo 6, Bo-win Sub District, Sriracha Dist Chonburl"
Plant Country"Thailand"
Make Logo"https://api.vincario.com/img/make/ford.svg"
Fuel Consumption Combined (l/100km)"8.4"
Fuel Consumption Extra Urban (l/100km)"7.5"
Fuel Consumption Urban (l/100km)"10"
Number of Axles"2"
Number of Seats"5"
Weight Empty (kg)"3350"
Check Digit"0"
Sequential Number"582825"
Number of Doors"4"
Colour"Gunmetal"
Fuel Capacity"80"
Battery Capacity"0"
Registration State"New South Wales"
Registration Country"Australia"
Not all labels will be present for every vehicle — availability depends on what Vincario has on record for that VIN.

Example response

[
  { "label": "VIN", "value": "MPBCMFF70RX582825" },
  { "label": "Vehicle ID", "value": "1647" },
  { "label": "Make", "value": "Ford" },
  { "label": "Make ID", "value": "30" },
  { "label": "Model", "value": "Ranger" },
  { "label": "Model Year", "value": "2024" },
  { "label": "Product Type", "value": "Car" },
  { "label": "Body", "value": "Pickup" },
  { "label": "Engine Displacement (ccm)", "value": "2993" },
  { "label": "Engine Power (kW)", "value": "184" },
  { "label": "Fuel Type - Primary", "value": "Diesel" },
  { "label": "Transmission", "value": "Auto" },
  { "label": "Fuel Capacity", "value": "80" },
  { "label": "Colour", "value": "Gunmetal" },
  { "label": "Registration State", "value": "New South Wales" },
  { "label": "Registration Country", "value": "Australia" }
]

Error responses

StatusMeaning
401Missing or invalid token
404Vehicle not found or not accessible
curl "https://api.telemax.com.au/api/v2/vehicles/info?imei=353148090123456" \
  -H "Authorization: Bearer <token>"

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from POST /api/v2/authentication/token/api-key.

Lifetime: ~24 hours (86,399 seconds). Cache the token and reuse it. Re-authenticate 5 minutes before expiry.

Scoping: API key tokens are scoped to the company the key belongs to and may restrict access to a vehicle allowlist and/or action set (see token claims).

No refresh endpoint — re-authenticate with your API key when the token expires.

Query Parameters

imei
string
id
integer
vin
string

Response

Successful response

label
string

Field name (e.g. "Make", "Model Year", "Engine Power (kW)")

value
string

Field value (always a string, even for numeric or array values)