Discover/Hasznaltauto API
live

Hasznaltauto APIhasznaltauto.hu

Access used car listings and detailed specifications from Hasznaltauto.hu, Hungary's largest second-hand car marketplace, via a simple REST API.

This API takes change requests — .
Endpoint health
verified 11h ago
list_cars
car_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
11h ago

What is the Hasznaltauto API?

The Hasznaltauto.hu API provides access to Hungary's largest used car marketplace through 2 endpoints, returning listing data and full vehicle specifications. The list_cars endpoint retrieves paginated batches of 75 cars per page including name, price, and URL, while car_details returns granular technical specs, seller name, and location for any individual listing.

This call costs5 credits / call— charged only on success
Try it
Page number for pagination (1-based).
Filter by fuel type. Accepted values include: Benzin, Dízel, Benzin/Gáz, LPG, CNG, Dízel/Gáz, Hibrid, Hibrid (Benzin), Hibrid (Dízel), Elektromos, Etanol, Biodízel, Gáz.
Maximum price in HUF. Only listings at or below this price are returned (e.g. 500000).
Filter by transmission type. Accepted values: "automata" for automatic, "manuális" for manual.
Minimum engine power in horsepower (LE). Listings below this value are excluded. Applied client-side on the fetched page.
When true, only listings with a currently valid vehicle registration (érvényes forgalmi) are returned.
api.parse.bot/scraper/bcb94485-054e-4b0f-9fa5-bc9d135a14eb/<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/bcb94485-054e-4b0f-9fa5-bc9d135a14eb/list_cars?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

List used cars (személyautó) currently available on hasznaltauto.hu. Returns paginated results ordered by the site's default sort. Each page contains up to ~100 car summaries. Pagination advances by integer page number; the site does not expose total page count so iteration stops when a page returns fewer items than expected. Optional filters narrow results by price, fuel type, transmission, valid registration, and minimum horsepower. Server-side filters (max_price, fuel_type, transmission=automata, valid_registration) are applied upstream; min_horsepower and transmission=manuális are applied client-side on the returned page.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
fuel_typestringFilter by fuel type. Accepted values include: Benzin, Dízel, Benzin/Gáz, LPG, CNG, Dízel/Gáz, Hibrid, Hibrid (Benzin), Hibrid (Dízel), Elektromos, Etanol, Biodízel, Gáz.
max_priceintegerMaximum price in HUF. Only listings at or below this price are returned (e.g. 500000).
transmissionstringFilter by transmission type. Accepted values: "automata" for automatic, "manuális" for manual.
min_horsepowerintegerMinimum engine power in horsepower (LE). Listings below this value are excluded. Applied client-side on the fetched page.
valid_registrationbooleanWhen true, only listings with a currently valid vehicle registration (érvényes forgalmi) are returned.
Response
{
  "type": "object",
  "fields": {
    "cars": "array of car listing objects, each with name (string), url (string), price (string), and attributes (array of strings such as fuel type, year, engine displacement)",
    "page": "integer, the current page number",
    "total_on_page": "integer, number of cars returned on this page"
  },
  "sample": {
    "data": {
      "cars": [
        {
          "url": "https://www.hasznaltauto.hu/szemelyauto/peugeot/rifter/peugeot_rifter_1.2_puretech_allure_ss_l1_kizarolag_gyartasrendelesbol_elerheto_modell-20789545",
          "name": "PEUGEOT RIFTER 1.2 PureTech Allure S&S L1",
          "price": "10 855 000 Ft",
          "attributes": [
            "Benzin",
            "2024",
            "1 199 cm³"
          ]
        }
      ],
      "page": 1,
      "total_on_page": 95
    },
    "status": "success"
  }
}

About the Hasznaltauto API

Endpoints Overview

The API exposes two endpoints. list_cars returns paginated results from Hasznaltauto.hu's inventory of személyautó (passenger car) listings. Each page delivers up to 75 car objects, each containing the car's name, url, price, and a set of listing attributes. The page parameter (1-based integer) controls pagination, and the response includes total_on_page so you can detect partial pages at the end of the result set.

Car Details

Passing any listing URL from Hasznaltauto.hu to car_details returns a richer object. Fixed fields include title, price (formatted as a Hungarian Forint string, e.g. 10 855 000 Ft), seller, and location. Beyond those, the response contains dynamic specification keys in Hungarian — fields such as Kategória (category), Szélesség (width), and other technical attributes that vary by vehicle. This means the exact set of keys in the response depends on what the individual seller has filled in for that listing.

Data Shape and Coverage

Because the dynamic specification keys are in Hungarian and vary per listing, consuming code should handle missing keys gracefully. The url field returned by list_cars is directly usable as the url input to car_details, making it straightforward to chain the two endpoints for bulk data collection. Coverage is limited to passenger cars (személyautó); other vehicle categories listed on the site are not currently in scope.

Source Context

Hashnaltauto.hu is Hungary's primary online marketplace for used vehicles. It does not publish an official public developer API. This Parse API is the practical way to integrate its listing data into external applications.

Reliability & maintenanceVerified

The Hasznaltauto API is a managed, monitored endpoint for hasznaltauto.hu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when hasznaltauto.hu 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 hasznaltauto.hu 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
11h ago
Latest check
2/2 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 makes and models across the Hungarian used car market using list_cars and price fields.
  • Build a vehicle comparison tool by pulling full specs from car_details for multiple listings.
  • Monitor new listings as they appear by paginating list_cars and detecting new URLs over time.
  • Aggregate seller and location data from car_details to map dealership density across Hungarian regions.
  • Feed listing data into a price estimation model by combining attributes from list_cars with technical specs from car_details.
  • Populate an internal inventory database with structured car data including title, price, and specifications.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Hasznaltauto.hu have an official public developer API?+
No. Hasznaltauto.hu does not publish a public developer API or documented data access program. This Parse API is the available programmatic interface to its listing data.
What does `car_details` return beyond price and title?+
car_details returns seller (the dealer or private seller name), location (the seller's address or region), and a variable set of Hungarian-language specification keys such as Kategória and Szélesség. The exact keys depend on what the individual listing includes, so not all vehicles will have the same set of fields.
Can I filter `list_cars` results by make, model, price range, or year?+
The list_cars endpoint currently accepts only a page parameter for pagination and returns all available listings without filter options. You can fork this API on Parse and revise it to add filter parameters targeting specific makes, models, or price ranges.
Does the API cover vehicle categories other than passenger cars?+
Not currently. The API covers személyautó (passenger car) listings only. Hasznaltauto.hu also lists motorcycles, vans, and trucks, but those categories are outside the current scope. You can fork the API on Parse and revise it to add endpoints for those vehicle types.
How fresh is the listing data, and are removed listings handled?+
Results reflect what is currently live on Hasznaltauto.hu at the time of the request. If a listing has been removed or sold, calling car_details with its URL will return an error or empty response rather than cached data. Building in error handling for missing listings is advisable when processing results in bulk.
Page content last updated . Spec covers 2 endpoints from hasznaltauto.hu.
Related APIs in AutomotiveSee all →
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.
eng.auto24.lv API
Search and browse thousands of vehicles from Latvia's largest auto marketplace, filtering by make, type, year, price, fuel type, and transmission to find exactly what you're looking for. Access comprehensive vehicle details including specifications, equipment lists, images, and pricing information for any listing.
autoscout24.cz API
Search and browse car listings from AutoScout24.cz to find detailed vehicle information including specifications, pricing, and availability. Access comprehensive car data across multiple listings with filtering and taxonomy options to discover the perfect vehicle match.
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.
carousell.com.my API
Search for used car listings on Carousell Malaysia and retrieve detailed information including pricing, mileage, vehicle specifications, condition, and seller details. Browse available inventory or look up comprehensive information on specific listings.
autos.mercadolibre.com.ar API
Search for used and new cars on MercadoLibre Argentina and instantly retrieve detailed listings with brand, model, year, mileage, price, location, seller information, and photos. Build car comparison tools, price tracking apps, or market analysis dashboards with comprehensive vehicle data from Argentina's largest online marketplace.
coches.net API
coches.net API
autotrader.com.au API
Search and browse car listings on AutoTrader Australia with filters by make and model, then view detailed information about specific vehicles. Find available cars with full specs and compare options across thousands of listings using customizable filters.