VIN Decoder

API Documentation

Access real-time vehicle data with our professional API. Integrate VIN decoding into your app, website, or business with ease.

Authentication

Subscribe to a plan and get your API key.

Endpoints

GET /api/?vin={vin} – Decode VIN (first result)

Decode VIN (first result)

  • vin (string, requerido): VIN del vehículo (8-17 caracteres)
  • user (string, requerido): Usuario
  • key (string, requerido): Clave API
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&vin=WF0GXXGAJ69C71882
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:37:25+00:00",
    "api_version": "2.0",
    "data": {
        "carId": 55565,
        "vin": "",
        "make": "BMW",
        "model": "3 Coupe (E92)",
        "year": "2007",
        "yearEnd": "2013",
        "description": "316 i",
        "body": "Coupe",
        "fuel": "Petrol",
        "engine": "Petrol Engine",
        "cubicCapacityCcm": 1599,
        "cubicCapacityLiters": 1.6,
        "powerHpFrom": 122,
        "powerHpTo": 122,
        "kwPowerFrom": "",
        "kwPowerTo": 90,
        "cylinder": 4,
        "drive": "Rear Wheel Drive",
        "valves": 4,
        "fuelMixtureFormation": "Direct Injection",
        "aspiration": "",
        "cylinderDesign": "",
        "coolingType": "",
        "tonnage": "",
        "axleLoadFromKg": "",
        "axleLoadToKg": "",
        "axleStyle": "",
        "axleType": "",
        "axleBody": "",
        "axleConfiguration": "",
        "wheelMounting": "",
        "brakeType": "",
        "hmdMfrModelName": ""
    }
}
GET /api/?vin={vin}&allCars=1 – Decode VIN (all results)

Decode VIN (all results)

  • vin (string, requerido)
  • allCars (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&vin=WF0GXXGAJ69C71882&allCars=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:40:18+00:00",
    "api_version": "2.0",
    "data": [
        {
            "carId": 19039,
            "vin": "",
            "make": "RENAULT",
            "model": "GRAND SCÉNIC II (JM0\/1_)",
            "year": "2004",
            "yearEnd": "2008",
            "description": "1.9 dCi (JM14)",
            "body": "MPV",
            "fuel": "Diesel",
            "engine": "Diesel",
            "cubicCapacityCcm": 1870,
            "cubicCapacityLiters": 1.9,
            "powerHpFrom": 131,
            "powerHpTo": 131,
            "kwPowerFrom": "",
            "kwPowerTo": 96,
            "cylinder": 4,
            "drive": "Front Wheel Drive",
            "valves": 2,
            "fuelMixtureFormation": "Direct Injection",
            "aspiration": "",
            "cylinderDesign": "",
            "coolingType": "",
            "tonnage": "",
            "axleLoadFromKg": "",
            "axleLoadToKg": "",
            "axleStyle": "",
            "axleType": "",
            "axleBody": "",
            "axleConfiguration": "",
            "wheelMounting": "",
            "brakeType": "",
            "hmdMfrModelName": ""
        },
        {
            "carId": 29917,
            "vin": "",
            "make": "RENAULT",
            "model": "GRAND SCÉNIC II (JM0\/1_)",
            "year": "2005",
            "yearEnd": "2009",
            "description": "1.5 dCi (JM1E)",
            "body": "MPV",
            "fuel": "Diesel",
            "engine": "Diesel",
            "cubicCapacityCcm": 1461,
            "cubicCapacityLiters": 1.5,
            "powerHpFrom": 106,
            "powerHpTo": 106,
            "kwPowerFrom": "",
            "kwPowerTo": 78,
            "cylinder": 4,
            "drive": "Front Wheel Drive",
            "valves": 2,
            "fuelMixtureFormation": "Direct Injection",
            "aspiration": "",
            "cylinderDesign": "",
            "coolingType": "",
            "tonnage": "",
            "axleLoadFromKg": "",
            "axleLoadToKg": "",
            "axleStyle": "",
            "axleType": "",
            "axleBody": "",
            "axleConfiguration": "",
            "wheelMounting": "",
            "brakeType": "",
            "hmdMfrModelName": ""
        }
    ]
}
GET /api/?carId={carId}&only=1 – Get vehicle by carId

Get vehicle by carId

  • carId (int, requerido)
  • only (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&carId=1888&only=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:41:46+00:00",
    "api_version": "2.0",
    "data": {
        "carId": 29917,
        "vin": "",
        "make": "RENAULT",
        "model": "GRAND SCÉNIC II (JM0\/1_)",
        "year": "2005",
        "yearEnd": "2009",
        "description": "1.5 dCi (JM1E)",
        "body": "MPV",
        "fuel": "Diesel",
        "engine": "Diesel",
        "cubicCapacityCcm": 1461,
        "cubicCapacityLiters": 1.5,
        "powerHpFrom": 106,
        "powerHpTo": 106,
        "kwPowerFrom": "",
        "kwPowerTo": 78,
        "cylinder": 4,
        "drive": "Front Wheel Drive",
        "valves": 2,
        "fuelMixtureFormation": "Direct Injection",
        "aspiration": "",
        "cylinderDesign": "",
        "coolingType": "",
        "tonnage": "",
        "axleLoadFromKg": "",
        "axleLoadToKg": "",
        "axleStyle": "",
        "axleType": "",
        "axleBody": "",
        "axleConfiguration": "",
        "wheelMounting": "",
        "brakeType": "",
        "hmdMfrModelName": ""
    }
}
GET /api/?carId={carId}&fluids=1 – Get fluid capacities

Get fluid capacities

  • carId (int, requerido)
  • fluids (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&carId=1888&fluids=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:50:38+00:00",
    "api_version": "2.0",
    "data": [
        {
            "ItemMPText": "Engine oil specification",
            "QualColTextStr": "without particle filter",
            "ValueText": "RN0710",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Engine oil specification",
            "QualColTextStr": "with particle filter",
            "ValueText": "RN0720",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Gearbox oil",
            "QualColTextStr": "TL4 gearbox",
            "ValueText": "2,00",
            "ADQuantityTextStr": "Liter (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Conditioner oil specification",
            "QualColTextStr": "Compressor DELPHI 5CVC",
            "ValueText": "SP 10",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Brake fluid when replacing",
            "QualColTextStr": "",
            "ValueText": "1,00",
            "ADQuantityTextStr": "Liter (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Oil conditioner",
            "QualColTextStr": "",
            "ValueText": "140 - 160",
            "ADQuantityTextStr": "cm³",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Transmission oil specification",
            "QualColTextStr": "",
            "ValueText": "API GL4 SAE 75W-80",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Coolant specification",
            "QualColTextStr": "",
            "ValueText": "Glaceol RX Typ D",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Coolant",
            "QualColTextStr": "",
            "ValueText": "7,50",
            "ADQuantityTextStr": "Liter (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Engine oil with filter",
            "QualColTextStr": "",
            "ValueText": "4,50",
            "ADQuantityTextStr": "Liter (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Refrigerant for air conditioner",
            "QualColTextStr": "",
            "ValueText": "515 - 585",
            "ADQuantityTextStr": "Gram (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Brake fluid specification",
            "QualColTextStr": "",
            "ValueText": "DOT 4",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Tank capacity",
            "QualColTextStr": "",
            "ValueText": "60",
            "ADQuantityTextStr": "Liter (s)",
            "AddTextStr": ""
        },
        {
            "ItemMPText": "Refrigerant specification",
            "QualColTextStr": "",
            "ValueText": "R134a",
            "ADQuantityTextStr": "",
            "AddTextStr": ""
        }
    ]
}
GET /api/?carId={carId}&oemParts=1 – Get OEM parts

Get OEM parts

  • carId (int, requerido)
  • oemParts (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&carId=1888&oemParts=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:53:04+00:00",
    "api_version": "2.0",
    "data": [
        {
            "group": "Brake system",
            "shortname": "Accessories",
            "name": "Accessories, brake pads",
            "parts": [
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "440833410R"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "7701049765"
                },
                {
                    "manufacturer": "VW",
                    "oe_number": "2H0698295A"
                }
            ]
        },
        {
            "group": "Brake system",
            "shortname": "Accessories",
            "name": "Accessories, disc brake pads",
            "parts": [
                {
                    "manufacturer": "AUDI",
                    "oe_number": "2H0698295"
                },
                {
                    "manufacturer": "AUDI",
                    "oe_number": "2H0698295A"
                },
                {
                    "manufacturer": "FORD",
                    "oe_number": "5029238"
                },
                {
                    "manufacturer": "FORD",
                    "oe_number": "6531187"
                },
                {
                    "manufacturer": "FORD",
                    "oe_number": "6668584"
                },
                {
                    "manufacturer": "MAZDA",
                    "oe_number": "126066300"
                },
                {
                    "manufacturer": "PEUGEOT",
                    "oe_number": "4211263"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "4408 334 10R"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "77 01 049 280"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "77 01 049 765"
                },
                {
                    "manufacturer": "SEAT",
                    "oe_number": "2H0698295"
                },
                {
                    "manufacturer": "SEAT",
                    "oe_number": "2H0698295A"
                },
                {
                    "manufacturer": "SEAT",
                    "oe_number": "945126300000"
                },
                {
                    "manufacturer": "SKODA",
                    "oe_number": "2H0698295"
                },
                {
                    "manufacturer": "SKODA",
                    "oe_number": "2H0698295A"
                },
                {
                    "manufacturer": "TOYOTA",
                    "oe_number": "0494705040"
                },
                {
                    "manufacturer": "TOYOTA",
                    "oe_number": "0494705050"
                },
                {
                    "manufacturer": "VAG",
                    "oe_number": "608 126 300"
                },
                {
                    "manufacturer": "VW",
                    "oe_number": "2H0698295"
                },
                {
                    "manufacturer": "VW",
                    "oe_number": "2H0698295A"
                },
                {
                    "manufacturer": "VW",
                    "oe_number": "608126300"
                }
            ]
        },
        {
            "group": "Brake system",
            "shortname": "Accessories",
            "name": "Accessory kit, brake",
            "parts": [
                {
                    "manufacturer": "FORD",
                    "oe_number": "3M512B486AA"
                },
                {
                    "manufacturer": "FORD",
                    "oe_number": "5029238"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "7701049765"
                }
            ]
        },
        {
            "group": "Specialized tool for vehicles",
            "shortname": "Adapter",
            "name": "Adapter, tool positioning kit (gas distribution)",
            "parts": [
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "Mot 1543"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "Mot1543"
                }
            ]
        },
        {
            "group": "Window cleaning system",
            "shortname": "Adapter",
            "name": "Adapter, washer water pump",
            "parts": [
                {
                    "manufacturer": "CITROËN",
                    "oe_number": "643470"
                },
                {
                    "manufacturer": "PEUGEOT",
                    "oe_number": "643470"
                },
                {
                    "manufacturer": "RENAULT",
                    "oe_number": "7700428386"
                }
            ]
        },...........
GET /api/?brands=1 – List all brands

List all brands

  • brands (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&brands=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:55:17+00:00",
    "api_version": "2.0",
    "data": [
        {
            "name": "ABARTH",
            "slug": "abarth"
        },
        {
            "name": "AC",
            "slug": "ac"
        },
        {
            "name": "ACURA",
            "slug": "acura"
        },
        {
            "name": "AIXAM",
            "slug": "aixam"
        },
        {
            "name": "ALFA ROMEO",
            "slug": "alfa-romeo"
        },
        {
            "name": "ALPINA",
            "slug": "alpina"
        },
        {
            "name": "ALPINE",
            "slug": "alpine"
        },
        {
            "name": "AMC",
            "slug": "amc"
        },
        {
            "name": "ARO",
            "slug": "aro"
        },
        {
            "name": "ARTEGA",
            "slug": "artega"
        },
        {
            "name": "ASIA MOTORS",
            "slug": "asia-motors"
        },
        {
            "name": "ASTON MARTIN",
            "slug": "aston-martin"
        },
        {
            "name": "AUDI",
            "slug": "audi"
        },
        {
            "name": "AUSTIN",
            "slug": "austin"
        },
        {
            "name": "AUSTIN-HEALEY",
            "slug": "austin-healey"
        },
        {
            "name": "AUTO UNION",
            "slug": "auto-union"
        },
        {
            "name": "AUTOBIANCHI",
            "slug": "autobianchi"
        },...........
GET /api/?brand={brand}&models=1 – List models by brand

List models by brand

  • brand (string, requerido)
  • models (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&brand=bmw&models=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:56:27+00:00",
    "api_version": "2.0",
    "data": [
        {
            "name": "02 (E10)",
            "slug": "02-e10"
        },
        {
            "name": "02 Touring (E6)",
            "slug": "02-touring-e6"
        },
        {
            "name": "02 Кабриолет (E10)",
            "slug": "02-kabriolet-e10"
        },
        {
            "name": "1 (E81)",
            "slug": "1-e81"
        },
        {
            "name": "1 (E87)",
            "slug": "1-e87"
        },
        {
            "name": "1 (F20)",
            "slug": "1-f20"
        },
        {
            "name": "1 (F21)",
            "slug": "1-f21"
        },
        {
            "name": "1 Кабриолет (E88)",
            "slug": "1-kabriolet-e88"
        },
        {
            "name": "1 купе (E82)",
            "slug": "1-kype-e82"
        },
        {
            "name": "1500-2000 (115, 116, 118, 121)",
            "slug": "1500-2000-115-116-118-121"
        },
        {
            "name": "1600 GT купе",
            "slug": "1600-gt-kype"
        },
        {
            "name": "2 Active Tourer (F45)",
            "slug": "2-active-tourer-f45"
        },
        {
            "name": "2 Gran Tourer (F46)",
            "slug": "2-gran-tourer-f46"
        },
        {
            "name": "2 Кабриолет (F23)",
            "slug": "2-kabriolet-f23"
        },
        {
            "name": "2 купе (F22, F87)",
            "slug": "2-kype-f22-f87"
        },
        {
            "name": "2.6- 3200 V8 купе",
            "slug": "2-6-3200-v8-kype"
        },
GET /api/?brand={brand}&model={model}&variants=1 – List variants by model

List variants by model

  • brand (string, requerido)
  • model (string, requerido)
  • variants (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&brand=bmw&model=3-series&variants=1
Respuesta:
{
    "success": true,
    "timestamp": "2025-07-02T22:57:26+00:00",
    "api_version": "2.0",
    "data": [
        {
            "typeName": "315",
            "typeYears": "03.1981 - 03.1984",
            "fullTitle": "BMW 3 (E21) 315"
        },
        {
            "typeName": "315",
            "typeYears": "09.1982 - 12.1991",
            "fullTitle": "BMW 3 (E30) 315"
        },
        {
            "typeName": "316",
            "typeYears": "08.1975 - 08.1980",
            "fullTitle": "BMW 3 (E21) 316"
        },
        {
            "typeName": "316",
            "typeYears": "09.1980 - 08.1982",
            "fullTitle": "BMW 3 (E21) 316"
        },
        {
            "typeName": "316",
            "typeYears": "09.1982 - 12.1987",
            "fullTitle": "BMW 3 (E30) 316"
        },
        {
            "typeName": "316 (Ecotronic)",
            "typeYears": "09.1983 - 12.1990",
            "fullTitle": "BMW 3 (E30) 316 (Ecotronic)"
        },
        {
            "typeName": "316 Ci",
            "typeYears": "04.2000 - 07.2006",
            "fullTitle": "BMW 3 купе (E46) 316 Ci"
        },
        {
            "typeName": "316 Ci",
            "typeYears": "06.2002 - 07.2006",
            "fullTitle": "BMW 3 купе (E46) 316 Ci"
        },
        {
            "typeName": "316 d",
            "typeYears": "02.2012 - 12.2018",
            "fullTitle": "BMW 3 Touring (F31) 316 d"
        },
        {
            "typeName": "316 d",
            "typeYears": "05.2011 - 12.2018",
            "fullTitle": "BMW 3 (F30, F80) 316 d"
        },
        {
            "typeName": "316 d",
            "typeYears": "07.2009 - 12.2011",
            "fullTitle": "BMW 3 (E90) 316 d"
        },
        {
            "typeName": "316 d",
            "typeYears": "09.2009 - 06.2012",
            "fullTitle": "BMW 3 Touring (E91) 316 d"
        },
        {
            "typeName": "316 g",
            "typeYears": "03.1994 - 08.2000",
            "fullTitle": "BMW 3 Compact (E36) 316 g"
        },
        {
            "typeName": "316 i",
            "typeYears": "01.1996 - 10.1999",
            "fullTitle": "BMW 3 Touring (E36) 316 i"
        },............
GET /api/?vin={vin}&getEngines=1 – Get engine details by VIN

Get engine details by VIN

  • vin (string, requerido)
  • getEngines (bool, requerido): 1
  • user (string, requerido)
  • key (string, requerido)
Ejemplo:
GET /api/?user=TUUSUARIO&key=TUAPIKEY&vin=WF0GXXGAJ69C71882&getEngines=1
Respuesta:
 {
    "success": true,
    "timestamp": "2025-07-02T22:58:57+00:00",
    "api_version": "2.0",
    "data": [
        {
            "Brand": "FORD",
            "Model": "FIESTA VI (CB1, CCN)",
            "Description": "1.25",
            "kiloWatts": 44,
            "From": "2008-06",
            "Until": "",
            "EngineDetails": {
                "EngineCode": "STJA",
                "EngineFullDescription": "FORD STJA",
                "EngineAttributes": [
                    {
                        "Group": "General",
                        "Name": "Construction interval",
                        "Value": " - "
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Power",
                        "Value": "44 kW"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Power",
                        "Value": "60 PS"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Capacity",
                        "Value": "1242 ccm"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Engine construction",
                        "Value": "ряд"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Fuel type",
                        "Value": "бензин"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Fuel mixture",
                        "Value": "Впрыскивание во впускной коллектор\/Карбюратор"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Charge type",
                        "Value": "всасывающее устройство"
                    },
                    {
                        "Group": "General",
                        "Name": "Engine type",
                        "Value": "Бензиновый двигатель"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Cylinder construction",
                        "Value": "DOHC"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Engine management",
                        "Value": "Зубчатый ремень"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Cooling type",
                        "Value": "с водяным охлаждением"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Compression",
                        "Value": "11 : 1"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Bore",
                        "Value": "71.9 mm"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Stroke",
                        "Value": "76.5 mm"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Number of cylinders",
                        "Value": "4"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Number of main bearings",
                        "Value": "5"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Number of valves",
                        "Value": "16"
                    },
                    {
                        "Group": "General",
                        "Name": "Construction interval",
                        "Value": " - "
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Power",
                        "Value": "44 kW"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Power",
                        "Value": "60 PS"
                    },
                    {
                        "Group": "TechnicalData",
                        "Name": "Capacity",
                        "Value": "1242 ccm"
                    },...........

Support

Need help or a custom plan? Write us at info@vindecodervehicle.com