Skip to main content
Hit enter to search or ESC to close
Close Search
Verbolia
Menu
  • Products
    • Vpage
      • Vpage logoProgrammatic platform for SEO, GEO, and SEACreate high-performance pages at scale for every way your customers search.
    • Vlink
      • Logo VlinkAutomated internal linkingImplement your linking strategy at scale on your e-commerce or classifieds website with our flexible internal linking solution.
    • Vrender
      • Vrender logoDynamic renderingMake every page discoverable by every bot. Vrender ensures your content is crawlable — whether by Googlebot, ChatGPT or PerplexityBot.
  • Pricing
  • Clients
  • Partners
  • Resources
    • –
      • BlogDiscover latest industry trends and insights
      • EbooksGain a competitive edge with our expert ebooks
    • –
      • Keyword cannibalization identifierFind highly similar keywords in a keyword list
      • Traffic opportunity toolDiscover our innovative method to drive website traffic
    • Product information
      • Product documentationFind answers to all your questions
      • Product updatesRead latest features enhancements
  • About Verbolia
    • About usWho is Verbolia?
    • CareersJoin our team!
  • Sign in
  • Request a demo
Verbolia

Vpage

19
  • Getting started
    • Statement of Work for Verbolia Setup and Onboarding
    • How to use Verbolia at its best!
  • Product feed
    • How to integrate your offer (products, ads,..) in the most convenient way into the Verbolia solution?
  • Reverse proxy routing
    • Reverse proxy fundamentals
    • How to setup the reverse proxy to use Vpages?
  • Internal linking configuration
    • Why and how to link the Verbolia pages to your existing web pages?
  • Vpages basics
    • How does Verbolia match products to keywords?
    • Using labels to organize your workflow
    • Setting up FAQ sections on your Vpages
    • How does Verbolia handle index/follow directives?
    • Integrating Verbolia Vpages into a native mobile App
    • How to ensure search engines index your Vpages
  • Theme management
    • Master instance
    • Advanced theme manager
    • Managing header and footer in your Verbolia theme
  • Dashboard
    • Managing GA4 authorization
    • Setting up GA4 tracking for Verbolia
    • Tracking Googlebot visits on Vpages
    • Analyzing performance with labels in the dashboard

Vmax

3
  • Getting started
    • Vmax – Integration Guide
    • Vmax – FAQ
  • Vanalytics
    • GTM Template Documentation for Vanalytics

Vlink

3
  • Vlink – Integration Guide
  • Vlink – Monitoring
  • Vlink – FAQ

Vrender

2
  • Vrender Integration Guide
  • Crawlers reference 
  • Home
  • Help Center
  • Vpage
  • Product feed
  • How to integrate your offer (products, ads,..) in the most convenient way into the Verbolia solution?
View Categories

How to integrate your offer (products, ads,..) in the most convenient way into the Verbolia solution?

(An) up-to-date product/attribute/review feed(s) must be available in order to generate the most relevant, super-optimized landing pages.

Verbolia accepts CSV, XML or JSON formats via FTP or URL connection. Best is to make the data feed urls easily accessible, meaning no authentication required.

The product feed with all general product information and attributes feed with extra product attribute details can be integrated in one and the same feed, if structured well (see examples below). A reviews feed should be set-up separately, because of potential file size issues.

If you want/need to use different feeds (for product data, extra attributes, reviews), make sure there’s a unique identifier (product id, ad id, etc.) available in every file to map the different feeds correctly with each other.

The data feed(s) must contain all information needed to rebuild the design of the client’s search result pages. Meaning all product information, product attributes details, images, badges, dates,… the client shows on his search results pages (in titles, descriptions, buttons, filters,…) needs to be structurally available in the feed(s) to make sure the Verbolia landing pages have exactly the same look-and-feel and behaviour as the client’s website.

In general: the more data the better, as it will also be helpful to reach more qualitative results in keyword research (if applicable) and for matching the most relevant products to the pages (via our internal search algorithms). 

Some basic fields, using Verbolia’s default namings are: Id, GroupId, Category, Brand,
Title, Url, ImageUrl, SalePrice, OriginalPrice, QuantityInStock.

Additional fields are compulsory but could turn out to be mandatory when crosschecking the needs with the client’s search result pages (mostly, using Verbolia’s default namings: AdditionalImageUrl, Color, Size, Season, Badge, Rating,…).

The GroupId is needed when you want to only show 1 single (grouped) product result (image/link) on the Verbolia pages iso. all the different colors, sizes, etc.

Below you can read more detailed explanations and download several examples of clean data feeds, of different types and formats, which will give you more clarity on the needed information.


 CSV

  • Field separators can be comma , / TAB / semi-colon ; / pipe |
    Default separator is comma ,
  • Attribute value delimiters can be comma , / semi-colon ; / pipe |
    Default attribute value delimiter is pipe |
  • For AttributeList columns, delimiters can be colon : / equals = / comma , / semi-colon ; / pipe |
    Default attributetype:value delimiter is colon :
    Default attribute types delimiter is semi-colon ;

If you have multiple values for the same attribute type, you should duplicate the attributetype:value for all available attribute values.

Default example: 
attributetype1:value;attributetype2:value;attributetype3:value color:blue;size:small;size:medium;size:large;season:summer;season:spring

The chosen field separator must be different from the chosen delimiters however!!!

Double quotes “” can be used to enclose values which could create conflicts with the above defaults (eg. SalePrice value is comma-delimited too, full text values with commas,…).

CSV Example 1:

  • 1 line equals 1 product on level of color/price.
  • GroupId available for grouping (if needed). When activated in the Verbolia app, the results (image/link) on the Verbolia pages will be shown on this level.
  • Different attribute columns (brand, category, sizes,…), values are pipe delimited.
  • 1 column containing AttributeList per product (attribute types Color, ImageUrl, SalePrice,…), following the above default delimiters.

CSV Example 2:

  • Same as 1a, only more attribute types are integrated into the AttributeList column (eg. size, season, badge,…).

CSV Example 3:

  • Same as 1a, only 1 line equals 1 product on level of color/price and size.

XML

XML Example

  • It’s crucial to use camelCase for all element names.
  • The element name for each product must be <item> inside of the root element <channel>

Example:
<?xml version="1.0" encoding="UTF-8"?> <channel> <item> --> All data for a product will be inside of this element </item> <item> --> All data for a product will be inside of this element </item> ... </channel>

  • All attributes must be in an element <attribute> inside of the element <attributes>. The element <attributes> must be in the root of an element <item>.
  • An element <attribute> can only contain 1 simple element (like <value> or <type>). So no list of attributes is accepted! This means, if you have an attribute with two different values, you must create 2 elements <attribute> with the same type (so you can have duplicate types). 

Example:
... <item> <attributes> <attribute> <type>color</type> <value>White</value> </attribute> <attribute> <type>colorFamily</type> <value>White</value> </attribute> <attribute> <type>colorFamily</type> <value>Green</value> </attribute> <attribute> <type>thumbnail</type> <value>/images/heh-9133_600x600.png</value> </attribute> </attributes> </item>


Json

Json Example

  • It’s crucial to use camelCase for all element names.
  • Format is an array of objects, where each object contains a product/ad.
    [ { --> All data for a product will be inside of this element }, { --> All data for a product will be inside of this element }, … ]
  • Format is again an array of objects but each object can only contain 2 name-value pairs: type and value. This means, if you have an attribute with two different values, you must create 2 objects with the same type (so you can have duplicate types).
    "attributes": [{ "type": "color", "value": "White" },{ "type": "colorFamily", "value": "Green" },{ "type": "colorFamily", "value": "White" },{ "type": "thumbnail", "value": "/images/heh-9133_600x600.png" },{ "type": "price", "value": "24.99" },{ ... } ]
Updated on June 24, 2025

© 2026 Verbolia. All rights reserved.

Close Menu
  • Products
    • Vpage
      • Vpage logoProgrammatic platform for SEO, GEO, and SEACreate high-performance pages at scale for every way your customers search.
    • Vlink
      • Logo VlinkAutomated internal linkingImplement your linking strategy at scale on your e-commerce or classifieds website with our flexible internal linking solution.
    • Vrender
      • Vrender logoDynamic renderingMake every page discoverable by every bot. Vrender ensures your content is crawlable — whether by Googlebot, ChatGPT or PerplexityBot.
  • Pricing
  • Clients
  • Partners
  • Resources
    • –
      • BlogDiscover latest industry trends and insights
      • EbooksGain a competitive edge with our expert ebooks
    • –
      • Keyword cannibalization identifierFind highly similar keywords in a keyword list
      • Traffic opportunity toolDiscover our innovative method to drive website traffic
    • Product information
      • Product documentationFind answers to all your questions
      • Product updatesRead latest features enhancements
  • About Verbolia
    • About usWho is Verbolia?
    • CareersJoin our team!
  • Sign in
  • Request a demo