Website

Read all vehicles brands in category

Last update: 11.12.2023

Returns list of all vehicles brands in category.

GET: https://www.autovit.ro/api/open/categories/:category_id/makes

Permission: read

Header

Field Type Description
User-Agent string Account email.

Parameter

Field Type Description
id Number Category Id. Category unique ID.
category_id Number Category Id. Category unique ID.
brand_code Number Brand Slug.
page Number Optional parameter. Allows requesting specific page results
limit Number Optional parameter. Allows limitation results for one request

Example request:
		HTTP/1.1 GET /categories/29/makes

User-Agent: $USER_EMAIL
Content-Type: application/json
Authorization: Bearer $ACCESS_TOKEN			
		
Copied to clipboard
Success response:
		HTTP/1.1 200 OK
 {
     "options": {
         "acura": {
             "ro": "Acura",
             "en": "Acura"
         },
         "aixam": {
             "ro": "Aixam",
             "en": "Aixam"
         },
         "alfa-romeo": {
             "ro": "Alfa Romeo",
             "en": "Alfa Romeo"
         },
         "aro": {
             "ro": "Aro",
             "en": "Aro"
         },
         "asia": {
             "ro": "Asia",
             "en": "Asia"
         },
         ...
     }
}			
		
Copied to clipboard