Cars
Endpoints for browsing car models and their configuration data. Most list endpoints support filtering and pagination.
Common headers
headers
fingerprint: <FINGERPRINT>
client: <CLIENT_HASH>
accept-language: ru | uz | en (optional)
Authorization: Bearer <ACCESS_TOKEN> (optional for some endpoints)GET /cars
GET /cars
Supports filtering, search, sorting, and pagination.
curl
curl "<BASE_URL>/api/v1/cars?brands=<BRAND_IDS>&bodyTypes=<BODY_TYPE_IDS>&min=15000&max=55000&sort=-price&limit=16&offset=0&search=tesla" \
-H "client: <CLIENT_HASH>" \
-H "fingerprint: <FINGERPRINT>" \
-H "accept-language: ru"GET /cars/:id
GET /cars/:id
Returns the main car model object, including localized fields.
curl
curl "<BASE_URL>/api/v1/cars/<CAR_ID>" \
-H "client: <CLIENT_HASH>" \
-H "fingerprint: <FINGERPRINT>" \
-H "accept-language: en" \
-H "Authorization: Bearer <ACCESS_TOKEN>"Technical sections
GET /cars/:id/info
Info blocks with localized titles/descriptions.
curl
curl "<BASE_URL>/api/v1/cars/<CAR_ID>/info" \
-H "client: <CLIENT_HASH>" \
-H "fingerprint: <FINGERPRINT>" \
-H "accept-language: uz"GET /cars/:id/modifications
Technical configuration sections for the model.
curl
curl "<BASE_URL>/api/v1/cars/<CAR_ID>/modifications" \
-H "client: <CLIENT_HASH>" \
-H "fingerprint: <FINGERPRINT>" \
-H "accept-language: uz"Sorting
Supported values for sort: new, name, -name, id, -id, price, -price.