Skip to content

Product Feeds ​

Product feeds allow you to display dynamic product information inside your Videobots. Connect your product catalog to show personalized recommendations, featured items, or contextual products based on the video content.

Overview ​

The product feed feature consists of two main components:

  1. Product Feeds - Configure connections to your product data source
  2. Product Cards - Display products within your Videobot slides

How It Works ​

Your Product API → Videobot Feed → Product Cards → Viewer sees products
  1. You configure a product feed URL in your account settings
  2. Product cards fetch data from the feed when the Videobot loads
  3. Products are displayed as interactive cards that viewers can click

Key Features ​

  • Dynamic Data: Products update automatically from your feed
  • Custom Mapping: Support for any JSON feed format with field mapping
  • Flexible Display: Three card sizes with full color customization
  • Slide Assignment: Show different products on different slides

Quick Start ​

  1. Create a product feed in your account settings
  2. Add product cards to your Videobot slides
  3. Customize the appearance to match your brand

Requirements ​

  • Your product data must be accessible via an HTTPS URL
  • The feed must return valid JSON
  • Each product needs: ID, title, image URL, description, and product URL

Sample Feed ​

Here's a minimal product feed example:

json
{
  "products": [
    {
      "id": "prod-001",
      "title": "Classic White Sneakers",
      "image": "https://example.com/images/sneakers.jpg",
      "description": "<strong>$89.99</strong><br>Premium leather sneakers",
      "url": "https://example.com/products/sneakers"
    }
  ]
}

You can download complete sample feeds:

Continue to Creating Feeds to set up your first product feed.