Discover/Hardverapro API
live

Hardverapro APIhardverapro.hu

Access listings, prices, seller profiles, and category data from HardverApró, Hungary's largest tech marketplace, via a structured REST API.

Endpoint health
verified 3d ago
search_listings
list_category_listings
list_gpu_listings
get_listing_detail
get_user_listings
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Hardverapro API?

The HardverApró API provides structured access to Hungary's largest hardware classifieds platform across 6 endpoints. Use search_listings to run full-text searches with price and category filters, get_listing_detail to retrieve complete product data including description, images, and seller info, or get_user_profile to fetch registration dates, ratings, and active listing counts for any public seller.

Try it
Maximum number of listings to return
Search keyword to match against listing titles
Pagination offset (number of listings to skip)
Category slug: hardver, notebook, pc_szerver, mobil, szoftver_jatek, hazimozi_hifi, foto_video, egyeb
Maximum price filter in HUF
Minimum price filter in HUF
Subcategory slug within the chosen category (e.g. videokartya, processzor, memoria, alaplap, ssd_hdd, monitor)
api.parse.bot/scraper/f3e0781b-7144-4a69-9881-e13f4dc826b1/<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/f3e0781b-7144-4a69-9881-e13f4dc826b1/search_listings?limit=10&query=RTX+4070&offset=0&category=hardver&max_price=500000&min_price=1000&subcategory=videokartya' \
  -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 hardverapro-hu-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.

from parse_apis.hardverapró_api import HardverApro, Listing, ListingSummary, User, ListingNotFound

client = HardverApro()

# Search for GPU listings with a price filter
for summary in client.listingsummaries.search(query="RTX 4070", max_price=300000):
    print(summary.title, summary.price, summary.user)

    # Navigate from summary to full detail
    detail = summary.details()
    print(detail.title, detail.price, detail.seller_name, detail.category)
    break

# Browse GPU category directly
for gpu in client.listingsummaries.gpus():
    print(gpu.title, gpu.price, gpu.location)
    break

# Fetch a specific listing by URL
listing = client.listings.get(url="https://hardverapro.hu/apro/rjnu_2/friss.html")
print(listing.title, listing.price, listing.seller_name, listing.seller_rating_summary)

# Get a user profile and browse their listings
user = client.users.get(username="C64")
print(user.username, user.display_name, user.regisztralt, user.rang)

for item in user.listings.list():
    print(item.title, item.price, item.url)
All endpoints · 6 totalmissing one? ·

Full-text search over HardverApró marketplace listings. Matches title text via the `query` parameter. Optionally scope to a category/subcategory and filter by price range. Returns up to `limit` listings starting at `offset`. Each listing carries title, URL, price, seller username, location, posting time, and detail tags. Paginates via integer offset (increments of up to `limit`).

Input
ParamTypeDescription
limitintegerMaximum number of listings to return
querystringSearch keyword to match against listing titles
offsetintegerPagination offset (number of listings to skip)
categorystringCategory slug: hardver, notebook, pc_szerver, mobil, szoftver_jatek, hazimozi_hifi, foto_video, egyeb
max_priceintegerMaximum price filter in HUF
min_priceintegerMinimum price filter in HUF
subcategorystringSubcategory slug within the chosen category (e.g. videokartya, processzor, memoria, alaplap, ssd_hdd, monitor)
Response
{
  "type": "object",
  "fields": {
    "query": "search keyword used or null",
    "offset": "pagination offset used",
    "category": "category slug used or null",
    "listings": "array of listing summary objects with title, url, price, user, location, time, details",
    "subcategory": "subcategory slug used or null"
  },
  "sample": {
    "data": {
      "query": "RTX 4070",
      "offset": 0,
      "category": null,
      "listings": [
        {
          "url": "https://hardverapro.hu/apro/example/friss.html",
          "time": "ma 10:00",
          "user": "seller1",
          "price": "219 990 Ft",
          "title": "ASUS GeForce RTX 4070 SUPER 12GB",
          "details": [],
          "location": "Budapest"
        }
      ],
      "subcategory": null
    },
    "status": "success"
  }
}

About the Hardverapro API

Searching and Browsing Listings

search_listings accepts a query string matched against listing titles, optional min_price and max_price filters in HUF, and category scoping via category and subcategory slugs. Supported top-level categories include hardver, notebook, mobil, szoftver_jatek, hazimozi_hifi, foto_video, and egyeb. Subcategory slugs such as videokartya, processzor, memoria, alaplap, ssd_hdd, and monitor narrow results further. Responses include an array of listing objects carrying title, url, price, user, location, time, and details. list_category_listings mirrors this shape for pure category browsing without a keyword. Both endpoints paginate using integer offset and limit parameters.

Listing Detail and GPU Shortcut

get_listing_detail returns the full record for a single listing. The url input accepts either a full https://hardverapro.hu/apro/... URL or a bare slug like rjnu_2. Response fields include uid, price (integer HUF when parseable, otherwise a string), description, images (array of URLs), city, region, category (full path string), and seller_name. list_gpu_listings is a dedicated shortcut for the hardver/videokartya subcategory, returning the standard listing shape with a single offset parameter — useful for monitoring the GPU secondhand market without constructing category parameters manually.

Seller Profiles and User Listings

get_user_profile returns public profile data for any username: rang (site rank), regisztralt (registration date and tenure), utoljara_belepve (last login timestamp), ertekelesek (ratings summary), hirdetesek (active listings count), and display_name. get_user_listings retrieves all active ads posted by a given user, paginated by offset, and returns the same listing objects as the search endpoints. These two endpoints together let you build seller reliability checks or monitor specific traders' inventory changes over time.

Reliability & maintenanceVerified

The Hardverapro API is a managed, monitored endpoint for hardverapro.hu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when hardverapro.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 hardverapro.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
3d ago
Latest check
6/6 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 GPU secondhand prices in Hungary using list_gpu_listings and recording the price field over time.
  • Build a price alert tool that polls search_listings with min_price/max_price filters for specific hardware keywords.
  • Aggregate seller trust signals by combining get_user_profile ratings with their listing history from get_user_listings.
  • Index full listing descriptions and images for a hardware comparison or aggregator site using get_listing_detail.
  • Monitor new listings in a specific subcategory (e.g. processzor or ssd_hdd) by polling list_category_listings with a rolling offset.
  • Analyze regional distribution of tech listings by collecting the city and region fields from get_listing_detail responses.
  • Assess seller activity patterns by comparing regisztralt, utoljara_belepve, and hirdetesek from get_user_profile.
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 HardverApró have an official developer API?+
HardverApró does not publish an official public developer API or documented developer program. This API provides structured programmatic access to its public listing and profile data.
What does `get_listing_detail` return that the listing summary endpoints don't?+
get_listing_detail returns fields not present in listing summaries: the full description text, an images array of image URLs, the integer uid, the canonical url, a full category path string, and separate city and region fields. Summary listings from search or category endpoints carry only title, url, price, user, location, time, and details.
Can I filter `search_listings` by both category and price at the same time?+
Yes. search_listings accepts category, subcategory, min_price, and max_price as independent optional parameters that can all be combined in a single request alongside the query keyword. Results are paginated using offset and limit.
Does the API expose private messaging, bidding, or negotiation features?+
No. The API covers public listing data, category browsing, listing details, and public seller profiles. Private messages, contact forms, and any authentication-gated interactions are not exposed. You can fork this API on Parse and revise it to add endpoints that cover other public surfaces of the site.
Is there a way to retrieve historical or sold listings?+
Not currently. The API returns active listings via search_listings, list_category_listings, list_gpu_listings, and get_user_listings. Closed or sold listings are not included in responses. You can fork this API on Parse and revise it to add a historical or sold-listings endpoint if that data is publicly accessible on the site.
Page content last updated . Spec covers 6 endpoints from hardverapro.hu.
Related APIs in MarketplaceSee all →
arukereso.hu API
Search and compare motherboards, batteries, and UPS systems on Arukereso.hu with real-time pricing, technical specifications, and customer reviews. Get detailed product information to make informed purchasing decisions across multiple categories.
hasznaltauto.hu API
Browse and retrieve detailed information about used cars listed on Hasznaltauto.hu, including specifications, pricing, and availability. Search through the Hungarian marketplace to find and compare vehicles that match your needs.
marketplace.nvidia.com API
Search and browse NVIDIA's marketplace for GPUs, laptops, desktops, and other hardware with detailed specifications, pricing, and availability across consumer and enterprise products. Filter by GPU model, brand, and current deals to find exactly what you're looking for.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
coolblue.be API
Search and browse electronics products from Coolblue Belgium, including CPUs, GPUs, and smartphones, with instant access to detailed specifications, pricing, and availability. Find exactly what you need by category or search query, and check real-time stock and price information across their entire catalog.
reserved.com API
Browse Reserved.com's complete product catalog, search for items by category, view detailed product information, and check real-time stock availability across stores. Find exactly what you're looking for with instant access to pricing, descriptions, and store locations.
mindfactory.de API
Search and browse PC hardware products from Mindfactory.de, including detailed specifications, pricing, and category listings. Find exactly what components you need with powerful search capabilities across their full inventory of computer parts and peripherals.
kupujemprodajem.com API
Search and retrieve detailed information about laptop listings, seller profiles, and product ads from kupujemprodajem.com by keyword or category. Access comprehensive ad details, seller history, and product catalogs to find exactly what you're looking for on the marketplace.