使用引擎代码筛选进行车辆搜索

使用此请求获取特定发动机代码在市场上的所有可用车辆 。

请求URL

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

查询参数

名称 类型 要求 样例 描述
country String CN 这是基于ISO 3166的语言代码。
lang String EN 这是基于ISO 639的语言代码。
engineCode String CAXC 这是车辆的引擎代码。

JSON输入

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

响应

一个成功的请求将会返回HTTP 200正确状态代码和如下参数的JSON响应。

JSON输出

{
    "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
}