Manufacturers

Use this call to get all available vehicle manufacturer in your API call. Contact support if you need more manufacturer. The TecDoc catalogue has more than 600 vehicle manufacturer.

Query URL

https://onedb.tecalliance.cn/api/common/getManufacturer

Query parameter

Name Type Required Example Description
language String Yes EN This is the language code according to ISO 639.

JSON Input

{
     "language":"EN" 
}

RESPONSE

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

JSON Output

{
    "data": [
        {
            "manuId": 5,
            "manuName": "AUDI"
        },
        {
            "manuId": 16,
            "manuName": "BMW"
        },
        {
            "manuId": 74,
            "manuName": "MERCEDES-BENZ"
        }
    ]
}