# 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

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/rlFfYNMSCBJTAE6mCpeu" alt=""><figcaption></figcaption></figure>

### Merchant domains

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

```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);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ce-docs.keywordrush.com/modules/affiliate/trovaprezzi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
