Product catalog

Your product catalog is made up of product offers — each offer links a product from the Revclic catalog to your merchant account and defines your selling conditions: price, commission rate, delivery time, and more.

There are three ways to populate your catalog.


1. Via the user interface

The simplest way to add or edit offers is through your merchant dashboard.

Navigate to My Products in your merchant account, then click Add a product. Start by searching for a product by name, brand, or EAN, then fill in your offer details:

Field Required Description
SKU yes Your internal reference for this product
URL yes Link to the product page on your website
Price yes Current selling price (€)
Former price no Original price before discount (€)
Commission rate yes Affiliate commission percentage (0–100%)
Delivery time yes Estimated delivery in days
Order processing time no Time to prepare the order (days)
Free return days no Number of days for free returns
Condition yes Product condition (New, Like New, Good, Fair, Poor)

Once submitted, the offer is immediately active and visible to affiliates.


2. Via the API

To automate catalog management, use the Product Offers API.

Create an offer

curl -X POST "https://api.revclic.com/product-offers" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "merchant_id": 42,
    "product_id": 1234,
    "sku": "MY-SKU-001",
    "price": 49.99,
    "url": "https://yourstore.revclic.dev/product/my-sku-001",
    "commission_rate": 8.0,
    "delivery_time": 3,
    "condition": "new"
  }'

Update an offer

curl -X PUT "https://api.revclic.com/product-offers/567" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "price": 44.99,
    "commission_rate": 10.0
  }'

Delete an offer

curl -X DELETE "https://api.revclic.com/product-offers/567" \
  -H "Authorization: Bearer YOUR_TOKEN"

See the API reference for the full list of parameters and response schemas.


3. Via a custom integration or crawler

If your catalog is large or managed by an external system (e.g. a PIM, an e-commerce platform, or a price comparison tool), we can set up a dedicated integration or crawler tailored to your needs.

Contact us to discuss the options available for your setup.


Next steps