> For the complete documentation index, see [llms.txt](https://ce-docs.keywordrush.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ce-docs.keywordrush.com/modules/affiliate/trovaprezzi.md).

# Trovaprezzi

### How to get your Partner ID

Trovaprezzi does not have a public affiliate program. Please contact the Trovaprezzi team directly to gain access to their affiliate program and your Partner ID.

### How to update product lists

The Trovaprezzi API does not have methods to update existing products. Therefore, it is recommended to use the [auto-update of product listings](/updating-products/updating-the-product-list.md) feature for this module.

You can use product URLs as keywords:

<figure><img src="/files/0JRMLp9jJ7ENkO3AA1aT" alt=""><figcaption></figcaption></figure>

### Merchant domains

The Trovaprezzi API does not return direct product links or merchant domains. For this reason, you need to add `merchant -> domain` matching pairs manually. Add code like this to your functions.php file:

```php
function my_trovaprezzi_merchant2domain($m2d)
{
        $m2d['Ri Si Electronic'] = 'risielectronic.it';
        $m2d['Jolly Shop'] = 'interteria.it';
        $m2d['Mondoshop'] = 'rmondoshop.it';

        return $m2d;
}

add_filter('cegg_trovaprezzi_merchant2domain', 'my_trovaprezzi_merchant2domain', 10, 1);
```
