For stores and partners

Become a PriceInfo partner

Register your store for free and send PriceInfo official product prices, stock, delivery, and identifiers through a feed, API, or CMS module. After review, your offers can appear on comparison pages and bring buyers directly to your store.

Discovered listing context

We will attach this application to the PriceInfo page you came from

If you are correcting or claiming product data found during public-source discovery, this application will include that PriceInfo source page URL for review. The official feed/API/CMS export you provide becomes the long-term source for prices, stock, delivery, and identifiers.

Open referenced page
Access request

Merchant application

Approved applications create a merchant cabinet user and a Merchant API key. The first import should be a small test batch.

Found your store on PriceInfo?

Replace public-source fragments with official data

PriceInfo may show product facts discovered from publicly available pages while a store is not yet directly connected. Those records are separated from verified merchant feeds and can be incomplete, delayed, or missing delivery details. The best correction path is a free merchant application with your official export, not one-off manual edits.

  1. Submit this form and include the PriceInfo source page URL if you are responding to a discovered listing.
  2. Add a product feed URL now, or choose the Merchant API / CMS module route if a feed is not ready yet.
  3. PriceInfo reviews the store, creates merchant access, and starts with a small import trial before larger synchronization.
1

Hosted feed URL

Use XML, CSV, or JSON feeds with familiar fields such as name, URL, price, currency, GTIN/EAN, MPN, image, availability, and delivery time. Czech and Slovak stores can reuse a Heureka-style XML export with the heureka_like preset.

POST /api/merchant/v1/feeds
2

Merchant API · async V2

Send one offer or a batch of up to 100 items. A 202 response means accepted: store the job ID, poll its status, and reuse a stable Idempotency-Key when retrying.

POST https://priceinfo.eu/api/merchant/v1/offers/bulk
3

CMS modules

OpenCart, PrestaShop, WooCommerce, Magento, Shopify, and similar connectors use the same API contract and import review rules.

CMS module contract
Merchant API · async V2

OpenAPI 3.1

Open the complete developer contract with every endpoint, request field, response, import status, quota, error rule, and a downloadable OpenAPI 3.1 file.

CZ / SK feed

Heureka XML can be reused

If your store already exports a Heureka-compatible XML feed, submit that URL in the application. PriceInfo reads the feed into raw source records first, then matches offers to normalized products by EAN, MPN, brand, and model.

PRODUCTNAME, URL Product title and canonical product page
PRICE_VAT Current VAT-inclusive product price
EAN, PRODUCTNO Identifier fields used for fast matching
MANUFACTURER Brand or producer name
DELIVERY_DATE, DELIVERY Availability and delivery price candidates
Required data

Minimum product export fields

Strong identifiers reduce review delays. GTIN/EAN and MPN are the fastest way to attach your offer to the correct normalized product.

name Product title shown by the store
url Canonical product page URL
price, currency Current price in the market currency
gtin / ean Best product matching identifier
mpn, brand, model Fallback matching and search data
image_url Product image candidate
availability in stock, out of stock, preorder, or unknown
delivery_price, delivery_time Delivery cost and expected delivery time
Example

Hosted Heureka XML feed configuration

{
  "name": "Main CZ Heureka XML feed",
  "country": "CZ",
  "format": "xml",
  "feed_url": "https://merchant.example/heureka.xml",
  "mapping_preset": "heureka_like",
  "schedule_cron": "0 * * * *"
}
Example

Heureka XML item shape

<SHOP>
  <SHOPITEM>
    <ITEM_ID>cz-laptop-001</ITEM_ID>
    <PRODUCTNAME>Lenovo ThinkPad E16 Gen 2 21MA001XCK</PRODUCTNAME>
    <URL>https://merchant.example/lenovo-thinkpad-e16-gen-2</URL>
    <PRICE_VAT>22990</PRICE_VAT>
    <CATEGORYTEXT>Elektronika | Pocitace a notebooky | Notebooky</CATEGORYTEXT>
    <MANUFACTURER>Lenovo</MANUFACTURER>
    <EAN>197530123456</EAN>
    <PRODUCTNO>21MA001XCK</PRODUCTNO>
    <IMGURL>https://merchant.example/images/thinkpad-e16.jpg</IMGURL>
    <DELIVERY_DATE>0</DELIVERY_DATE>
    <DELIVERY>
      <DELIVERY_ID>CESKA_POSTA</DELIVERY_ID>
      <DELIVERY_PRICE>99</DELIVERY_PRICE>
    </DELIVERY>
  </SHOPITEM>
</SHOP>
Example

Direct bulk push payload

POST https://priceinfo.eu/api/merchant/v1/offers/bulk
Authorization: Bearer <merchant_api_key>
Idempotency-Key: <stable-batch-id>
Content-Type: application/json

{
  "country": "PL",
  "items": [
    {
      "name": "Lenovo Legion Pro 5 16IAX10 32GB 1TB RTX 5060",
      "url": "https://merchant.example/lenovo-legion-pro-5",
      "price": 6699,
      "currency": "PLN",
      "brand": "Lenovo",
      "model": "Legion Pro 5 16IAX10",
      "gtin": "0198158683050",
      "mpn": "83F3003HPB",
      "image_url": "https://merchant.example/images/legion-pro-5.jpg",
      "availability": "in stock",
      "delivery_price": 25.99,
      "delivery_time": "1-2 days"
    }
  ]
}