skroutz.gr APIskroutz.gr ↗
Access Skroutz.gr product data via API: search products, browse categories, compare store prices, track price history, and read user reviews across Greek retailers.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/f51372c8-2856-4aef-972a-050ad42a3f9a/get_all_categories' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all top-level product categories from the navigation menu. Returns a list of category objects with their IDs, names, and URLs.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of category objects with id, name, and url",
"status": "string, always 'success'"
},
"sample": {
"data": [
{
"id": "2673",
"url": "https://www.skroutz.gr/c/2673/antiiliaka.html",
"name": "Αντηλιακά"
},
{
"id": "40",
"url": "https://www.skroutz.gr/c/40/kinhta-thlefwna.html",
"name": "Κινητά"
}
],
"status": "success"
}
}About the skroutz.gr API
The Skroutz.gr API covers 7 endpoints for querying product data from Greece's largest price comparison platform. Use search_products to find items by keyword, get_product_stores to retrieve per-store prices and shipping costs, or get_price_history to pull time-series pricing data across 1-month, 3-month, 6-month, and all-time windows — all returning structured JSON without needing to parse the site yourself.
Categories and Product Discovery
get_all_categories returns the top-level navigation taxonomy as an array of objects, each with an id, name, and url. Pass a category's slug and category_id to get_category_products to page through its listings. The response includes a products array of SKU objects (each with sku_id, name, slug, and url) plus a count field for the total result set. Alternatively, search_products accepts a free-text query and returns a matching results array with the same SKU-level fields.
Product Details and Specifications
get_product_details takes a sku_id and slug — both available from search or category results — and returns the full specs object alongside the product name and canonical url. The specs field exposes structured technical attributes as key-value pairs (e.g. processor, RAM, display size) that vary by product category.
Pricing, Store Availability, and History
get_product_stores returns a stores array for a given sku_id, including each seller's price, shipping cost, and stock availability, as well as aggregate fields total_shops and min_price. Optionally providing slug improves shop name resolution in the response. get_price_history returns three time-series graph objects — min_price, popularity, and shop_count — across standard time windows, making it straightforward to detect price trends or demand shifts for a product.
User Reviews
get_product_reviews retrieves the review list for a product, with each entry in the reviews array carrying the author name, date, rating, review text, and helpfulness signals. The count field reflects the total number of reviews on record for that SKU.
- Build a price-drop alert tool by polling
get_product_storesformin_pricechanges on tracked SKUs. - Visualize price trends over time using
get_price_historymin_price and shop_count time-series data. - Aggregate competitive pricing intelligence across Greek e-commerce retailers for a specific product category.
- Populate a product catalog with structured specs by querying
get_product_detailsfor each SKU. - Analyze consumer sentiment on Greek electronics or appliances by collecting reviews via
get_product_reviews. - Mirror Skroutz category taxonomy into a localized shopping app using
get_all_categoriesandget_category_products. - Track retailer count fluctuation over time using the
shop_countseries fromget_price_history.
| 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 Skroutz.gr have an official developer API?+
What does `get_product_stores` return, and how does it differ from `get_price_history`?+
get_product_stores returns a snapshot of current seller-level data: the full stores array with individual shop prices, shipping costs, and availability, plus aggregate fields total_shops and min_price. get_price_history does not show individual stores — it returns aggregate time-series objects (min_price, popularity, shop_count) over historical windows (1 month, 3 months, 6 months, all time), suitable for trend analysis rather than real-time purchase decisions.Does the API cover seller profile pages or store-level ratings?+
get_product_stores, but dedicated seller profile data — such as store-level review scores or fulfillment metrics — is not exposed. You can fork this API on Parse and revise it to add a store-detail endpoint covering that data.Is pagination supported across all listing endpoints?+
get_category_products accepts an optional page parameter for paginating through category listings, and its response includes a count field so you can calculate total pages. search_products and get_product_reviews do not currently expose pagination parameters — they return the available result set for the given query or SKU in a single response.