Discover/avtoelon.uz API
live

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.

Endpoints
5
Updated
14d ago
Try it
Page number
Car brand alias (e.g., 'chevrolet', 'bmw', 'byd'). Use alias values from list_brands endpo
Car model alias (e.g., 'cobalt', 'gentra'). Use alias values from list_models_by_brand end
Region alias (e.g., 'tashkentskaya-oblast', 'samarkandskaya-oblast'). Use alias values fro
Maximum year of manufacture
Maximum price
Minimum price
Minimum year of manufacture
Currency: 1 for Sum, 2 for USD
api.parse.bot/scraper/325d769e-520a-4c55-a289-1f75b0f81283/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/325d769e-520a-4c55-a289-1f75b0f81283/search_car_listings' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

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.

Input
ParamTypeDescription
pageintegerPage number
brandstringCar brand alias (e.g., 'chevrolet', 'bmw', 'byd'). Use alias values from list_brands endpoint.
modelstringCar model alias (e.g., 'cobalt', 'gentra'). Use alias values from list_models_by_brand endpoint.
regionstringRegion alias (e.g., 'tashkentskaya-oblast', 'samarkandskaya-oblast'). Use alias values from list_regions endpoint.
year_tointegerMaximum year of manufacture
price_maxintegerMaximum price
price_minintegerMinimum price
year_fromintegerMinimum year of manufacture
price_currencyintegerCurrency: 1 for Sum, 2 for USD
Response
{
  "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.

Common use cases
  • Build a price comparison tool for specific car models across Uzbekistan regions using price_min/price_max and region filters
  • Track inventory volume for a given brand by paginating through search_car_listings results with a fixed brand alias
  • Populate a model dropdown UI dynamically using list_models_by_brand with popular_score to order by popularity
  • Monitor homepage hot deals from get_hot_deals to detect pricing trends on promoted listings
  • Filter listings by manufacture year range using year_from and year_to to surface late-model used cars
  • Aggregate regional listing counts across all oblasts returned by list_regions to map supply distribution
  • Seed a local auto-market database with brand and model reference data from list_brands and list_models_by_brand
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does avtoelon.uz have an official developer API?+
Avtoelon.uz does not publish a documented public developer API or offer API keys to third parties. This Parse API is the structured programmatic access point for the data the site exposes.
What does `search_car_listings` actually return per item, and how does pagination work?+
Each item in the 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?+
Not currently. The API returns summary-level data (title, price, year, location, thumbnail) for listings and does not include individual listing detail pages with mileage, full photo galleries, engine specifications, or seller contact details. You can fork the API on Parse and revise it to add a listing detail endpoint that fetches those fields.
Can I filter listings by transmission type, fuel type, or body style?+
Those filters are not currently supported. The 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.
How fresh are the listings returned by the API?+
The API reflects what is currently visible on avtoelon.uz at the time of the request. There is no built-in caching layer that delays results, but listing availability on the source site changes as sellers post, update, or remove ads. For freshness-sensitive applications, poll at regular intervals.
Page content last updated . Spec covers 5 endpoints from avtoelon.uz.
Related APIs in AutomotiveSee all →
acura.ca API
Check current Acura vehicle deals, financing rates, lease payments, and incentives across all Canadian provinces and models including the ADX, ZDX, MDX, RDX, Integra, and TLX. Calculate payment options based on specific offers and models available by province.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
firetruckmall.com API
Browse all available fire trucks from Fire Truck Mall with complete details including pricing, year, specifications, and images. Track when each listing was posted to find the newest inventory and compare vehicles across the marketplace.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
carjam.co.nz API
Look up detailed New Zealand vehicle information by license plate, VIN, or chassis number to instantly access registration status, WOF/COF compliance, service history, odometer readings, and damage records. Verify if a vehicle is stolen and get comprehensive specs to make informed decisions before purchasing or for fleet management.
Avtoelon.uz API – Uzbekistan Car Listings · Parse