automoto.ua APIautomoto.ua ↗
Access automoto.ua car listings, specs, pricing, dealerships, news, and reviews via API. Search Ukraine's automotive marketplace with 9 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/92330e9b-1445-45f2-8f0b-b9a7485459b2/get_listing_statistics' \ -H 'X-API-Key: $PARSE_API_KEY'
Get site-wide listing statistics including total listings count, new listings per day, and total review count.
No input parameters required.
{
"type": "object",
"fields": {
"all": "total number of active listings on the platform",
"day": "number of new listings added today",
"reviews": "total number of reviews on the platform"
},
"sample": {
"data": {
"all": 584103,
"day": 88699,
"reviews": 326018
},
"status": "success"
}
}About the automoto.ua API
The automoto.ua API exposes 9 endpoints covering Ukraine's automotive marketplace, giving programmatic access to used car listings, vehicle specs, dealer directories, owner reviews, and news articles. The search_listings endpoint returns paginated results filterable by make, with fields including price in USD, region, year, model, and thumbnail. Companion endpoints cover platform-wide statistics, full listing detail, and seller contact redirects.
Listings and Search
The search_listings endpoint accepts an optional make slug and page parameter, returning an array of listing summaries. Each object includes id, make, model, year, price_usd, region, url, title, specs, and thumbnail. The total_count field tells you how many listings match. For deeper detail, pass either a full url or a url_slug to get_listing_detail, which returns the full specs map (keys in Ukrainian), an images array of full-resolution URLs, type (e.g. Used), and price_usd as an integer.
Makes, Models, and Statistics
Before filtering a search, you can enumerate available makes with get_makes_list, which returns each make's integer id, display name, slug (used as make_id in downstream calls), and a count object with keys mark and total. Pass any slug to get_models_by_make to get the model roster for that brand with parallel structure. The get_listing_statistics endpoint requires no inputs and returns three top-level integers: all (total active listings), day (new listings added today), and reviews (total platform reviews).
Sellers, Dealerships, and Editorial Content
get_seller_contacts takes a numeric listing_id and returns a redirect_url pointing to the partner site where full contact details are hosted — useful for building lead pipelines without scraping each listing's contact flow yourself. The get_dealerships endpoint returns a directory of dealerships with each entry's name, logo, url, and a brands array of represented makes. For editorial data, get_news returns article headlines, publication dates in DD.MM.YYYY format, thumbnail URLs, and article URLs. get_reviews returns owner review titles (typically make, model, year), dates, URLs, and a rating string field — note the rating may be empty for some entries.
- Track daily new listing volume on automoto.ua using the
dayfield fromget_listing_statisticsto monitor market activity over time. - Build a make/model browser using
get_makes_listandget_models_by_maketo show inventory counts per brand and model before a user searches. - Aggregate used car prices across Ukrainian regions by iterating
search_listingspages and collectingprice_usdandregionfields. - Display full vehicle spec sheets by fetching
get_listing_detailwith a listing URL and rendering thespecsmap andimagesarray. - Generate a dealership locator by consuming
get_dealershipsand filtering by entries whosebrandsarray contains a target make. - Monitor automotive news from Ukraine by polling
get_newsfor new article titles and dates. - Build a cross-reference tool that maps a listing ID to its seller's partner-site contact page using
get_seller_contacts.
| 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 automoto.ua have an official developer API?+
What does `get_listing_detail` return that `search_listings` does not?+
search_listings returns summary fields: id, make, model, year, price_usd, region, thumbnail, and title. get_listing_detail adds a full specs map (all vehicle attributes, labelled in Ukrainian), an images array of full-resolution photo URLs, and a type field indicating listing category (e.g. 'Used'). It accepts either a full url or a url_slug.Can I filter search results by price range, year, or region?+
search_listings currently supports filtering by make slug and page number only. Price range, manufacture year, and region filters are not exposed as parameters. You can fork the API on Parse and revise it to add those filter parameters to the search endpoint.Are seller phone numbers returned directly by the API?+
get_seller_contacts returns a redirect_url pointing to a partner site where full contact details are available. The actual phone number is hosted on that external page. You can fork the API on Parse and revise it to resolve the redirect and extract the contact information directly.How deep is the pagination for `search_listings`, and are all makes covered?+
total_count string alongside each page of results, so you can calculate the number of pages. Pagination uses an integer page parameter with no documented hard limit. get_makes_list returns every make currently listed on the platform with a non-zero count, so coverage reflects the live marketplace inventory.