Discover/Avtoelon API
live

Avtoelon APIavtoelon.uz

Access car listings, hot deals, brands, models, and regions from avtoelon.uz via 5 structured endpoints covering the Uzbekistan auto classifieds market.

Endpoint health
verified 4d ago
list_brands
search_car_listings
list_models_by_brand
list_regions
get_hot_deals
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Avtoelon API?

The Avtoelon.uz API provides structured access to Uzbekistan's largest car classifieds platform across 5 endpoints, returning listing data including price, year, location, and thumbnail for each vehicle. The search_car_listings endpoint lets you filter by brand, model, region, year range, and price range, while reference endpoints supply the valid aliases needed to build those queries.

Try it
Page number for pagination.
Car brand alias (e.g., 'chevrolet', 'bmw', 'byd'). Use alias values from list_brands endpoint.
Car model alias (e.g., 'cobalt', 'gentra'). Use alias values from list_models_by_brand endpoint.
Region alias (e.g., 'tashkentskaya-oblast', 'samarkandskaya-oblast'). Use alias values from list_regions endpoint.
Maximum year of manufacture.
Maximum price.
Minimum price.
Minimum year of manufacture.
Currency for price filter: 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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/325d769e-520a-4c55-a289-1f75b0f81283/search_car_listings?page=1&brand=chevrolet&price_currency=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace avtoelon-uz-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Avtoelon car marketplace — browse brands, models, regions, and search listings."""
from parse_apis.avtoelon_uzbekistan_car_marketplace_api import (
    Avtoelon, PriceCurrency, BrandNotFound,
)

client = Avtoelon()

# List all brands available on the marketplace.
for brand in client.brands.list(limit=5):
    print(brand.name, brand.alias, brand.id)

# Drill into one brand's models via sub-resource navigation.
brand = client.brands.list(limit=1).first()
if brand:
    for model in brand.models.list(limit=5):
        print(model.name, model.alias, model.start_year, model.end_year)

# List regions to see available geographic filters.
for region in client.regions.list(limit=5):
    print(region.name, region.alias)

# Search listings with brand and price currency filter.
for listing in client.listings.search(brand="chevrolet", price_currency=PriceCurrency.USD, limit=3):
    print(listing.title, listing.price_text, listing.year, listing.location)

# Get featured hot deals from the homepage.
deal = client.listings.hot_deals(limit=1).first()
if deal:
    try:
        print(deal.title, deal.price_text, deal.url)
    except BrandNotFound as exc:
        print(f"brand not found: {exc}")

print("exercised: brands.list / brand.models.list / regions.list / listings.search / listings.hot_deals")
All endpoints · 5 totalmissing one? ·

Search for car listings by brand and optional filters. Returns promoted/featured car advertisements visible on the brand page, including title, price, year, location, and thumbnail. Paginates via page number. Filters include brand, model, region, year range, and price range.

Input
ParamTypeDescription
pageintegerPage number for pagination.
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 for price filter: 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": "6726233",
          "url": "https://avtoelon.uz/a/show/6726233",
          "year": 2024,
          "title": "Тёмно-синий GAC Aion V 2024 года, КПП Автомат, в Ташкент за ~31 400 y.e. id6726233",
          "location": "Ташкент",
          "price_text": "~31 400 y.e.",
          "thumbnail_url": "https://kluz-photos-tasinha.kcdn.online/webp/4e/4e693d42-0227-46f1-9bd6-0152544c925d/1-120x90.webp"
        }
      ],
      "has_next": false,
      "total_found": 30
    },
    "status": "success"
  }
}

About the Avtoelon API

Listing Search and Hot Deals

The search_car_listings endpoint returns paginated car advertisements from avtoelon.uz. Each result includes an id, url, title, price_text, year, location, and thumbnail_url. You can narrow results using brand, model, region, year_from, year_to, price_min, and price_max filters, all of which accept alias strings (e.g. 'chevrolet', 'cobalt', 'tashkentskaya-oblast'). The has_next field tells you whether additional pages exist for the current query. The get_hot_deals endpoint returns featured listings from the homepage in the same field shape — useful for surfacing currently promoted inventory without constructing a search query.

Reference Data Endpoints

Three reference endpoints supply the controlled vocabulary needed for filtering. list_brands returns every available brand with its numeric id, URL alias, and display name — the alias goes into search_car_listings, while the id feeds list_models_by_brand. list_models_by_brand accepts a brand_id and returns each model's id, name, alias, start_year, end_year, and popular_score, giving you production-era context alongside the alias required for filtering. list_regions returns all Uzbekistan oblasts with their id, alias, and name, covering the geographic filter dimension.

Coverage and Scope

All brand, model, and region aliases are sourced directly from the avtoelon.uz search form, so the reference data stays consistent with what the search index accepts. Pagination is integer-based via the page parameter; total_found reflects the count of items returned on the current page rather than a global result count. Listings include public-facing fields — there is no access to seller contact details, full vehicle specifications, or listing description text through the current endpoints.

Reliability & maintenanceVerified

The Avtoelon API is a managed, monitored endpoint for avtoelon.uz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when avtoelon.uz changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official avtoelon.uz API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price trends for specific models (e.g. Chevrolet Cobalt) across Uzbekistan regions using search_car_listings with model and region filters
  • Build a cross-brand price comparison tool for the Uzbekistan market using price_min/price_max filters
  • Monitor hot deal listings on avtoelon.uz homepage via get_hot_deals to detect promotional pricing patterns
  • Populate a branded car search UI with valid brand and model dropdowns from list_brands and list_models_by_brand
  • Filter listings by production year range to analyze inventory age distribution across a brand's model lineup
  • Aggregate regional supply data by iterating list_regions and querying search_car_listings per oblast
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 public developer API or documentation for third-party data access.
What does search_car_listings return and how does pagination work?+
Each page returns an array of listing objects under items, each with id, url, title, price_text, year, location, and thumbnail_url. The has_next boolean tells you whether a next page exists. Pass an integer page parameter to advance through results. total_found reflects the count of items on the current page, not a global total.
Does the API return full vehicle specifications or seller contact details?+
Not currently. The API returns the listing summary fields visible in search results — title, price, year, location, and thumbnail. Full specs, description text, and seller contact information are not included in the current endpoints. You can fork this API on Parse and revise it to add a listing detail endpoint that retrieves those fields.
How do I find the correct alias values for brand, model, and region filters?+
Call list_brands to get each brand's alias (for the brand filter) and numeric id (for list_models_by_brand). Pass that brand_id to list_models_by_brand to get model aliases. Call list_regions for region aliases. Using values outside these sets will not match listings.
Does the API cover listings outside Uzbekistan or support currency conversion?+
Coverage is limited to Uzbekistan. All listings are from avtoelon.uz and prices are returned as price_text strings in the format displayed on the site — no numeric currency conversion or multi-country data is available. You can fork this API on Parse and revise it to add normalization logic for the price field.
Page content last updated . Spec covers 5 endpoints from avtoelon.uz.
Related APIs in AutomotiveSee all →
avto.net API
Search and browse car listings from Slovenia's top automotive marketplace, then access detailed vehicle information including pricing, specifications, and seller details. Get comprehensive data on available cars to compare options and make informed purchasing decisions.
olx.uz API
Search and browse product listings on OLX.uz across all categories, with full details including specifications, location, and pricing. Compare prices and product information to identify the best available deals.
automoto.ua API
Search and explore car listings across Ukraine's largest automotive marketplace, compare vehicle statistics and prices, discover dealerships and seller contacts, and read news and reviews to make informed buying decisions. Access detailed vehicle specifications, market trends, and seller information all in one place.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
allcarindex.com API
Browse and search detailed information on over 14,000 automotive brands and 6,000 concept cars, organized by region, country, and model specifications. Discover vehicle data across the world's largest automotive encyclopedia with instant access to brand details, model information, and comprehensive search capabilities.
kolesa.kz API
Search for cars, spare parts, and other vehicles across Kazakhstan's largest marketplace, and retrieve detailed listing information including makes, models, and cities. Browse thousands of automotive listings to find exactly what you're looking for with comprehensive filtering and product details.
autochek.africa API
Browse and search car listings from Autochek Kenya's marketplace, view detailed vehicle information including specs and pricing, explore available makes and models, and get instant loan eligibility estimates for your purchase. Discover popular cars, brand new inventory, and connect with dealers all in one place.
autoplius.lt API
Search for cars and access detailed information like pricing, specifications, and listings from Autoplius.lt, Lithuania's largest vehicle classifieds marketplace. Find exactly what you're looking for with comprehensive car details all in one place.