Prevelo IDEV Affiliate Product Feed Documentation
Access structured product data for your affiliate marketing needs
Overview
The Prevelo Affiliate Product Feed provides structured product data in JSON format from the Prevelo collection that you can use for your affiliate marketing activities. Each product in the feed includes an affiliate link specific to your affiliate ID. This feed allows you to easily integrate Prevelo products into your website, blog, or marketing materials.
Important: This information is only for affiliates on the Prevelo Bikes IDEV Affiliate platform.
If you're not yet part of the Prevelo IDEV Affiliate program and would like to join, you can apply here: https://af.prevelobikes.com/
Feed Generator
Enter your affiliate ID below to generate your customized product feed URL:
Finding Your Affiliate ID:
- Login to https://af.prevelobikes.com/
- Look for your "Standard Linking Code"
- It will look like:
https://af.prevelobikes.com/idevaffiliate.php?id=100
- The number after "id=" (100 in this example) is your affiliate ID
Your custom feed URL:
Feed Reference
Feed URL
https://prevelo.com/pages/json-feed-with-idev-links?affiliate_id={YOUR_AFFILIATE_ID}
URL Parameters
Parameter | Required | Description |
---|---|---|
affiliate_id | Required | Your unique affiliate identifier provided by Prevelo |
Data Format
The feed returns a JSON object with the following structure:
{
"generated": "03/19/2025 12:00:00 PM PT", // Timestamp when the feed was generated
"affiliate_id": "100", // Your affiliate ID
"products": [ // Array of products
{
"sku": "PBA1203-SL", // Product SKU
"upc": "850069435035", // UPC code
"title": "Alpha Zero", // Product title
"variant": "Speed Silver", // Variant name
"msrp": "239.00", // Manufacturer's suggested retail price
"price": "239.00", // Current price
"url": "/products/alpha-zero?variant=4395594743835", // Product URL
"idev_affiliate_link": "https://af.prevelobikes.com/idevaffiliate.php?id=100&feed=1" // Your affiliate link
},
// Additional products...
]
}
Product Object Properties
Property | Type | Description |
---|---|---|
sku | String | Product stock keeping unit (SKU) |
upc | String | Universal Product Code (UPC) |
title | String | Product title |
variant | String | Variant name (color, size, etc.) |
msrp | String | Manufacturer's suggested retail price |
price | String | Current product price |
url | String | Product URL (relative path) |
idev_affiliate_link | String | Affiliate tracking link with your ID embedded |
Implementation Guide
To display products from the feed, you'll need to:
- Fetch the JSON feed using your affiliate ID
- Process the product data
- Display the products on your website
The feed provides all necessary information to display product listings including titles, pricing, variants, and affiliate links. Using standard JavaScript, you can create a product showcase with just a few lines of code.