avtoelon.uz APIavtoelon.uz ↗
Access car listings, hot deals, brands, models, and regions from avtoelon.uz via 5 structured endpoints covering Uzbekistan's largest auto classifieds.
curl -X GET 'https://api.parse.bot/scraper/325d769e-520a-4c55-a289-1f75b0f81283/search_car_listings' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for car listings by brand. Currently returns featured/promoted car advertisements visible on the brand page. Results include title, price, year, location, and thumbnail for each listing.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number |
| brand | string | Car brand alias (e.g., 'chevrolet', 'bmw', 'byd'). Use alias values from list_brands endpoint. |
| model | string | Car model alias (e.g., 'cobalt', 'gentra'). Use alias values from list_models_by_brand endpoint. |
| region | string | Region alias (e.g., 'tashkentskaya-oblast', 'samarkandskaya-oblast'). Use alias values from list_regions endpoint. |
| year_to | integer | Maximum year of manufacture |
| price_max | integer | Maximum price |
| price_min | integer | Minimum price |
| year_from | integer | Minimum year of manufacture |
| price_currency | integer | Currency: 1 for Sum, 2 for USD |
{
"type": "object",
"fields": {
"page": "integer current page number",
"items": "array of car listing objects with id, url, title, price_text, year, location, thumbnail_url",
"has_next": "boolean indicating if more pages exist",
"total_found": "integer count of items returned"
},
"sample": {
"data": {
"page": 1,
"items": [
{
"id": "7150620",
"url": "https://avtoelon.uz/a/show/7150620",
"year": 2017,
"title": "Chevrolet Matiz, 4 позиция 2017 года, КПП Механика, в Ташкентский район за 4 999 y.e. id7150620",
"location": "Ташкентский район",
"price_text": "4 999 y.e.",
"thumbnail_url": "https://kluz-photos-tasinha.kcdn.online/webp/55/55b818d5-d4ff-4cc4-be19-bc36fe4e0278/1-120x90.webp"
}
],
"has_next": false,
"total_found": 20
},
"status": "success"
}
}About the avtoelon.uz API
The Avtoelon.uz API exposes 5 endpoints covering Uzbekistan's primary car classifieds marketplace, returning structured listing data including price, year, location, and thumbnail URLs. The search_car_listings endpoint supports filtering by brand, model, region, price range, and year range, with paginated results. Reference endpoints for brands, models, and regions supply the alias and ID values needed to drive those filters accurately.
Listing Search and Hot Deals
The search_car_listings endpoint accepts up to eight filter parameters: brand, model, region, price_min, price_max, year_from, year_to, and page. Each result object in the items array carries a listing id, direct url, title, price_text, year, location, and thumbnail_url. The response also includes has_next for pagination and total_found for the count of returned items on that page. The get_hot_deals endpoint returns the same data shape for promoted listings currently featured on the homepage, with no filter inputs required.
Reference Data: Brands, Models, and Regions
Three reference endpoints underpin accurate filtering. list_brands returns every brand available on the marketplace — each with an id, alias, and name — and a total count. list_models_by_brand takes a numeric brand_id (obtained from list_brands) and returns model objects that include id, name, alias, start_year, end_year, and a popular_score. list_regions returns all Uzbekistan oblasts with their id, alias, and name, which map directly to the region parameter in search_car_listings.
Coverage and Scope
The API covers the Uzbekistan market as represented on avtoelon.uz, which lists inventory from sellers across all major regions including Tashkent, Samarkand, and their surrounding oblasts. Brand coverage spans both domestically common makes like Chevrolet and international brands including BMW, BYD, and Toyota. Alias values for brands, models, and regions must be sourced from the reference endpoints rather than guessed, as the site uses its own slug conventions.
- Build a price comparison tool for specific car models across Uzbekistan regions using
price_min/price_maxandregionfilters - Track inventory volume for a given brand by paginating through
search_car_listingsresults with a fixedbrandalias - Populate a model dropdown UI dynamically using
list_models_by_brandwithpopular_scoreto order by popularity - Monitor homepage hot deals from
get_hot_dealsto detect pricing trends on promoted listings - Filter listings by manufacture year range using
year_fromandyear_toto surface late-model used cars - Aggregate regional listing counts across all oblasts returned by
list_regionsto map supply distribution - Seed a local auto-market database with brand and model reference data from
list_brandsandlist_models_by_brand
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does avtoelon.uz have an official developer API?+
What does `search_car_listings` actually return per item, and how does pagination work?+
items array includes id, url, title, price_text, year, location, and thumbnail_url. The response includes a has_next boolean to tell you whether another page exists and a page field showing the current page. Pass the page integer parameter to step through results.Are full listing detail pages — photos, mileage, engine specs, contact info — covered?+
Can I filter listings by transmission type, fuel type, or body style?+
search_car_listings endpoint filters by brand, model, region, year_from, year_to, price_min, and price_max. You can fork the API on Parse and revise it to add those additional filter parameters.