Discover/Arukereso API
live

Arukereso APIarukereso.hu

Access product prices, specs, shop offers, and reviews from Arukereso.hu via 6 endpoints covering motherboards, batteries, UPS systems, and general search.

Endpoint health
verified 4d ago
get_lead_acid_batteries
get_product_details
get_product_reviews
search_products
get_motherboards
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Arukereso API?

The Arukereso.hu API provides access to Hungary's largest price comparison site through 6 endpoints covering product search, category listings, detailed specifications, shop offers, and user reviews. The get_product_details endpoint returns structured spec key-value pairs alongside per-shop pricing, shipping terms, and availability, while search_products lets you query across all categories by keyword or brand name.

Try it
Page number, starting from 1.
api.parse.bot/scraper/f2f18af5-6339-4554-b592-2b7ee600a1a1/<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/f2f18af5-6339-4554-b592-2b7ee600a1a1/get_motherboards?page=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 arukereso-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.árukeresõ_hu_api import Arukereso, ProductSummary, Product, BatteryProduct, Offer, Review, ProductNotFound

arukereso = Arukereso()

# Search for products by keyword
for product in arukereso.productsummaries.search(query="laptop"):
    print(product.name, product.price, product.offer_count)
    break

# Browse motherboards with pagination
for mobo in arukereso.productsummaries.list_motherboards(limit=5):
    print(mobo.name, mobo.price, mobo.specs)

# Get full product details from a listing result
for item in arukereso.productsummaries.list_motherboards(limit=1):
    detail = item.details()
    print(detail.name, detail.specs)
    for offer in detail.offers:
        print(offer.shop_name, offer.price, offer.availability)
        break

# Get reviews via sub-resource navigation
for item in arukereso.productsummaries.list_motherboards(limit=1):
    for review in item.reviews.list():
        print(review.reviewer, review.date, review.rating, review.text)
        break

# Browse lead acid batteries with value metrics
for battery in arukereso.batteryproducts.list_lead_acid(limit=3):
    print(battery.name, battery.voltage_v, battery.capacity_ah, battery.price_value_ratio)

# Browse UPS batteries
for ups in arukereso.batteryproducts.list_ups(limit=3):
    print(ups.name, ups.price, ups.voltage_v, ups.capacity_ah)

# Fetch product details directly by URL
detail = arukereso.products.get(url="https://www.arukereso.hu/alaplap-c3128/msi/mpg-b550-gaming-plus-p572974758/")
print(detail.name, detail.url)

# Handle product not found
try:
    arukereso.products.get(url="https://www.arukereso.hu/nonexistent-p999999999/")
except ProductNotFound as e:
    print(e.url)
All endpoints · 6 totalmissing one? ·

Get a paginated list of motherboards from the motherboard category on arukereso.hu. Returns 25 products per page with name, price, offer count, and specs.

Input
ParamTypeDescription
pageintegerPage number, starting from 1.
Response
{
  "type": "object",
  "fields": {
    "page": "string representing the requested page number",
    "products": "array of motherboard product objects with name, url, price, offer_count, and specs"
  },
  "sample": {
    "data": {
      "page": "1",
      "products": [
        {
          "url": "https://www.arukereso.hu/alaplap-c3128/msi/mag-b650-tomahawk-wifi-p872103225/",
          "name": "MSI MAG B650 Tomahawk WIFI Alaplap",
          "price": 66890,
          "specs": {
            "Chipset": "AMD B650",
            "CPU Foglalat": "Socket AM5",
            "Memória típusa": "DDR5",
            "Processzor gyártó": "AMD"
          },
          "offer_count": 7
        }
      ]
    },
    "status": "success"
  }
}

About the Arukereso API

Category and Search Endpoints

Three category endpoints — get_motherboards, get_lead_acid_batteries, and get_ups_batteries — return paginated lists of 25 products per page. Each product object includes name, url, price, offer_count, and specs. The battery endpoints (get_lead_acid_batteries and get_ups_batteries) go further by extracting voltage_v and capacity_ah from product specs and computing a price_value_ratio calculated as (V × Ah) / price, making it straightforward to rank batteries by energy-per-forint without post-processing. Pagination is controlled with the page integer parameter starting from 1.

The search_products endpoint accepts a query string and returns matching products with the same name, url, price, offer_count, and specs fields as the category endpoints. It performs best with product names and brand names such as laptop or iPhone. Descriptive multi-word phrases may return fewer results depending on how Arukereso.hu indexes them.

Product Detail and Review Endpoints

get_product_details requires a full product URL (obtained from any listing or search result) and returns the product's full specs object — all specification key-value pairs available on the product page — plus an offers array. Each offer entry includes shop_name, price, shipping, and availability, enabling direct cross-shop price comparison for a single SKU.

get_product_reviews also takes a full product URL (one that contains an embedded product ID in the format -p572974758/) and returns a reviews array. Each review object contains reviewer, date, rating, and text. Reviews are sourced from user-submitted content on Arukereso.hu and reflect the opinions tied to that specific product listing.

Reliability & maintenanceVerified

The Arukereso API is a managed, monitored endpoint for arukereso.hu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when arukereso.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 arukereso.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
4d 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
  • Comparing motherboard prices and offer counts across Hungarian online shops using get_motherboards
  • Ranking lead-acid batteries by energy efficiency using the pre-computed price_value_ratio field from get_lead_acid_batteries
  • Building a UPS selection tool that filters by voltage and capacity using get_ups_batteries
  • Aggregating per-shop offers including shipping and availability for a specific product via get_product_details
  • Displaying Hungarian user reviews and ratings for electronics products using get_product_reviews
  • Monitoring price changes for specific product URLs by periodically calling get_product_details
  • Building a brand-specific product catalog for the Hungarian market using search_products with brand name queries
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 Arukereso.hu have an official developer API?+
Arukereso.hu does not publish a public developer API or documented data access program for third-party developers.
What does the `price_value_ratio` field in the battery endpoints represent?+
It is a calculated value: (voltage_v × capacity_ah) / price. It gives a normalized energy-per-forint figure so you can sort batteries by cost-efficiency without doing the arithmetic yourself. Both get_lead_acid_batteries and get_ups_batteries include this field alongside the raw voltage_v and capacity_ah values.
Can I retrieve products from categories other than motherboards, lead-acid batteries, and UPS systems?+
The dedicated category endpoints currently cover only those three categories. You can use search_products to find products in other categories by keyword, though it returns the same basic fields (name, url, price, offer_count, specs) without category-specific computed fields like price_value_ratio. You can fork this API on Parse and add a new category endpoint targeting any other Arukereso.hu category.
How do I get shop-level pricing and availability for a product?+
get_product_details accepts a full product URL and returns an offers array. Each element contains shop_name, price, shipping, and availability. You get the product URL from any listing endpoint or from search_products.
Is it possible to filter search results by price range or category?+
The search_products endpoint currently accepts only a query string — there are no parameters for price range, category, or sort order. You would need to filter the returned results client-side based on the price field. You can fork this API on Parse and revise the endpoint to add filtering parameters.
Page content last updated . Spec covers 6 endpoints from arukereso.hu.
Related APIs in EcommerceSee all →
hardverapro.hu API
Search and browse tech products on Hungary's largest hardware marketplace, with specialized tools for finding GPUs and viewing detailed product information and seller profiles. Get access to listings across multiple categories, filter by specific hardware types, and discover seller details to make informed purchasing decisions.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.
emag.ro API
Access product data from eMAG.ro, Romania's largest online retailer. Search by keyword, browse categories, retrieve product details and reviews, and look up seller information.
pcpartpicker.com API
Search and retrieve detailed PC component data including motherboards, specifications, and pricing across all part categories from PCPartPicker. Build custom PC configurations by looking up individual parts and comparing their specs and costs.
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.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
verkkokauppa.com API
Search and browse products from Verkkokauppa.com to find items across categories, check real-time prices and availability, read customer reviews, and discover deals in outlet and clearance sections. Filter products by your preferences and get detailed product information including specifications and store stock levels.
megekko.nl API
Search and browse products from Megekko's electronics catalog, getting detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Explore the full product hierarchy to discover items across all categories and subcategories available on the store.