XML Specification

To import your products into our system, please provide a valid XML feed following the Google Shopping specification. Below is the list of tags currently supported by our parser.

Tag Name Requirement Description Example
<id> Required A unique identifier for the product within your shop. PROD-9982
<title> Required The name of the item. Levnobot Robotic Vacuum
<description> Required A relevant description of the product. The best cleaning assistant...
<link> Required The landing page URL for the product. https://yoursite.com/p/123
<image_link> Required The URL of the main product image. https://yoursite.com/img/1.jpg
<price> Required Regular price including currency code. 1200.00 CZK
<availability> Required Availability status (in stock, out of stock, preorder). in stock
<sale_price> Optional Discounted price. 999.00 CZK
<brand> Optional Brand name of the item. LevnoBrand
<gtin> Optional Global Trade Item Number (EAN/UPC). 8591234567890
<product_type> Optional Your internal category hierarchy. Home > Cleaning > Robots
<google_product_category> Optional Numeric ID from the Google taxonomy. 267
<shipping> Optional Container for shipping information (nested objects). -


Shipping Details (nested inside <shipping>)

Tag Name Description Example
<country> Country code (ISO 3166-1 alpha-2). SK
<service> Name of the shipping service. PPL
<price> Shipping price including currency. 99.00 CZK


XML Example

<?xml version="1.0" encoding="UTF-8"?>
<feed>
    <entry>
        <id>PROD-12345</id>
        <title>Levnobot Robotic Vacuum X1</title>
        <description>The ultimate cleaning companion for your smart home. High suction power and long battery life.</description>
        <link>https://www.yourshop.com/p/levnobot-x1</link>
        <image_link>https://www.yourshop.com/images/levnobot-x1.jpg</image_link>
        <availability>in stock</availability>
        <price>12000.00 CZK</price>
        <sale_price>9999.00 CZK</sale_price>
        <lowest_price_in_30_days>9999.00 CZK</lowest_price_in_30_days>
        <google_product_category>267</google_product_category>
        <google_product_category_name>Electronics > Robots > Vacuums</google_product_category_name>
        <product_type>Home &gt; Appliances &gt; Cleaning</product_type>
        <brand>Levnobot</brand>
        <gtin>8591234567890</gtin>
        <item_group_id>ROBOT-VAC-SERIES</item_group_id>
        <product_highlight>Strong suction power</product_highlight>
        <product_highlight>Laser navigation</product_highlight>
        <shipping>
            <country>CZ</country>
            <service>PPL</service>
            <price>99.00 CZK</price>
        </shipping>
        <shipping>
            <country>SK</country>
            <service>Packeta</service>
            <price>120.00 CZK</price>
        </shipping>
    </entry>
</feed>