Vehicle search with engine code filter

Use this request to get all available vehicles in the market for a specific engine code.

Query URL

https://onedb.tecalliance.cn/api/vehicles

Query parameter

Name Type Required Example Description
country String Yes CN This is the country code according to ISO 3166.
lang String Yes EN This is the language code according to ISO 639.
engineCode String Yes CAXC This is the an engine code from a vehicle.

JSON Input

{
    "country":"cn",
    "lang":"en",
    "engineCode":"CAXC"
}

RESPONSE

A successful request returns the HTTP 200 OK status code and a JSON response with following parameter.

JSON Output

{
    "totalMatching": 2,
    "maxAllowedPage": 1,
    "vehicles": [
        {
            "carId": 26581,
            "manuId": 5,
            "manuName": "AUDI",
            "modId": 4955,
            "modelName": "A3 (8P1)",
            "constructionType": "Hatchback",
            "cylinder": 4,
            "cylinderCapacityCcm": 1390,
            "cylinderCapacityLiter": 140,
            "fuelType": "Petrol",
            "engineType": "Petrol Engine",
            "fuelTypeProcess": "Direct Injection",
            "impulsionType": "Front Wheel Drive",
            "powerHpTo": 125,
            "powerKwTo": 92,
            "typeName": "1.4 TFSI",
            "valves": 4,
            "modelGeneration": "",
            "structureSynonym": "",
            "salesDesignation": "A3 (2003-2013)",
            "modelDesign": "8P1",
            "typeDesign": "",
            "typeDesignation": "TFSI ",
            "driveSystemSynonym": "",
            "yearOfConstrFrom": "200801",
            "yearOfConstrTo": "201208",
            "engineCode": [
                "CAXC",
                "CMSA"
            ]
        },
        {
            "carId": 26582,
            "manuId": 5,
            "manuName": "AUDI",
            "modId": 5143,
            "modelName": "A3 Sportback (8PA)",
            "constructionType": "Hatchback",
            "cylinder": 4,
            "cylinderCapacityCcm": 1390,
            "cylinderCapacityLiter": 140,
            "fuelType": "Petrol",
            "engineType": "Petrol Engine",
            "fuelTypeProcess": "Direct Injection",
            "impulsionType": "Front Wheel Drive",
            "powerHpTo": 125,
            "powerKwTo": 92,
            "typeName": "1.4 TFSI",
            "valves": 4,
            "modelGeneration": "",
            "structureSynonym": "Sportback",
            "salesDesignation": "A3 Sportback (2004-2015)",
            "modelDesign": "8PA",
            "typeDesign": "",
            "typeDesignation": "TFSI ",
            "driveSystemSynonym": "",
            "yearOfConstrFrom": "200801",
            "yearOfConstrTo": "201512",
            "engineCode": [
                "CAXC",
                "CMSA"
            ]
        }
    ],
    "manufacturerFacet": {
        "total": 0,
        "data": null
    },
    "modelFacet": {
        "total": 0,
        "data": null
    },
    "yearFacet": null
}