Discover/x-kom.pl API
live

x-kom.pl APIx-kom.pl

Access x-kom.pl product data via API: search, category browsing, product details, reviews, Q&A, promotions, flash deals, and store locations.

Endpoints
9
Updated
14d ago
Try it
Page number for pagination
Sort order for results
Results per page
Search keyword (e.g. 'laptop', 'mysz gamingowa')
api.parse.bot/scraper/fe6e6b4a-c5c7-4687-86dd-fdc23768d1e3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/fe6e6b4a-c5c7-4687-86dd-fdc23768d1e3/search_products?page=1&limit=30&query=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Search for products by keyword with pagination and sorting. Returns paginated product listings matching the search query.

Input
ParamTypeDescription
pageintegerPage number for pagination
sortstringSort order for results
limitintegerResults per page
queryrequiredstringSearch keyword (e.g. 'laptop', 'mysz gamingowa')
Response
{
  "type": "object",
  "fields": {
    "Items": "array of product objects with Id, Name, Price, Producer, Category, MainPhoto, and other details",
    "Groups": "array of product group/category facets with Id, Name, ProductCount",
    "TotalCount": "integer total number of matching products",
    "TotalPages": "integer total number of pages"
  },
  "sample": {
    "data": {
      "Items": [
        {
          "Id": "1370407",
          "Name": "MacBook Pro M5/16GB/512/Mac OS Srebrny 10R GPU",
          "Price": 7499,
          "OldPrice": 7999,
          "Producer": {
            "Id": "357",
            "Name": "Apple"
          },
          "MainPhoto": {
            "Url": "https://cdn.x-kom.pl/i/setup/images/prod/big/product-large,,2025/10/pr_2025_10_16_10_25_57_444_00.jpg"
          }
        }
      ],
      "Groups": [
        {
          "Id": "2",
          "Name": "Laptopy i komputery",
          "ProductCount": 8353
        }
      ],
      "TotalCount": 8452,
      "TotalPages": 282
    },
    "status": "success"
  }
}

About the x-kom.pl API

The x-kom.pl API exposes 9 endpoints covering the full product catalog of one of Poland's largest electronics retailers. You can retrieve structured product data — including prices in PLN, specifications, photos, and availability — via endpoints like get_product_details, search_products, and get_hot_shot. Customer reviews with star ratings, Q&A threads, active promotions, and physical store locations with geo-coordinates are all accessible without any account or authentication on your end.

Product Search and Category Browsing

The search_products endpoint accepts a query string (e.g. 'laptop' or 'mysz gamingowa') and returns paginated results with TotalCount, TotalPages, and an Items array. Each item includes Id, Name, Price, Producer, Category, and MainPhoto. Results can be sorted and paginated with sort, page, and limit parameters. The get_category_products endpoint works similarly but filters by group_id (e.g. '4' for smartphones) or category_id (e.g. '159' for laptops), and both endpoints return Groups facets that show product counts per sub-category.

Product Details, Reviews, and Q&A

get_product_details returns the full product record for a given product_id, including a Photos array with Url and ThumbnailUrl fields, a Features array of specification objects, an HTML ProductDescription, and the current Price in PLN. If the product ID does not exist, the endpoint returns a stale_input signal with kind input_not_found. get_product_reviews returns paginated review Items with AuthorName, Body, Rating, RatingFivePoints, and CreateTime, plus a Statistics object covering rating distributions. get_product_questions returns customer Q&A threads with each question's Body, Author, Answers, and a Statistics block counting questions with and without answers.

Promotions and Flash Deals

get_hot_shot returns the currently active "Gorący strzał" daily flash deal, including OldPrice, the discounted Price, PromotionEnd as an ISO datetime, and a full nested Product object. get_promotions returns a paginated list of all products currently in promotion, structured identically to the category endpoint response. Both endpoints are useful for price-tracking and deal-alert applications.

Categories and Physical Stores

get_categories returns the full category tree: an array of groups, each containing a Categories array with Id, NameSingular, NamePlural, and ProductsCount. This is useful for mapping x-kom's taxonomy before issuing category-level queries. get_stores returns each physical salon with Name, Email, a structured Address object (Lines, City, PostCode, Country), OpenHours strings, and a GeoLocation object with Latitude and Longitude.

Common use cases
  • Track flash deal prices over time using get_hot_shot fields Price, OldPrice, and PromotionEnd
  • Build a price comparison tool by querying search_products or get_product_details for PLN prices across product categories
  • Aggregate and analyze customer sentiment from get_product_reviews using Rating, RatingFivePoints, and Statistics distributions
  • Populate a category navigator by pulling the full taxonomy tree from get_categories including per-category ProductsCount
  • Monitor active promotions inventory by paginating through get_promotions and recording product IDs and prices
  • Build a store locator by combining get_stores GeoLocation coordinates with Address and OpenHours data
  • Answer pre-purchase questions programmatically by surfacing get_product_questions answers alongside product specs
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 x-kom.pl have an official public developer API?+
x-kom.pl does not publish an official public developer API or API documentation for third-party use. This Parse API provides structured access to the same product, review, and store data visible on the site.
What does `get_product_details` return when a product ID doesn't exist?+
When the supplied product_id does not correspond to an active product, the endpoint returns a stale_input response with kind set to input_not_found rather than throwing an HTTP error. Your integration should check for this field before processing the response body.
Does the API cover product stock levels or warehouse availability?+
The get_product_details endpoint includes availability data within the product record, but real-time stock quantities per warehouse or per SKU variant are not broken out as discrete response fields. You can fork this API on Parse and revise it to add an endpoint that targets more granular inventory data if your use case requires it.
Is historical pricing data accessible through this API?+
No endpoint returns historical price timeseries. The API reflects current prices: Price in product listings, OldPrice and Price in get_hot_shot, and current promotional prices in get_promotions. You can fork this API on Parse and revise it to store snapshots and build a price history layer on top.
How does pagination work across endpoints that return product lists?+
Endpoints like search_products, get_category_products, get_product_reviews, and get_product_questions all accept page and limit parameters and return TotalCount and TotalPages in the response. You can iterate from page 1 up to TotalPages to retrieve a full result set. Default page size varies by endpoint when limit is not specified.
Page content last updated . Spec covers 9 endpoints from x-kom.pl.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
x-kom.pl API – Products, Reviews & Deals · Parse