# Example Deal Scraper Setup

Below I will be showing an example setup for one of our deals scraper. For this example we will be using a 3 Discord channel layout where each channel is used for specific discount ranges.

<figure><img src="https://4204487504-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FSKqJLBRUMbNMQhGsZKLn%2Fuploads%2FjEiePZZFcHbOMBRx2cPT%2Fimage.png?alt=media&#x26;token=6cdc331a-d359-4529-a500-2c2d22b9ffda" alt=""><figcaption><p>Example channel layout for Amazon deals scraper</p></figcaption></figure>

We will first need to [add access](https://docs.tempomonitors.com/admin-commands/access-command) for the deals scraper we wish to setup, in this example we will be using Amazon.

```
!m access add amazondeals scraper #amazon-0-50
```

This command will tell the Amazon deals scraper where to send all of the items it finds.&#x20;

***

Next we can start [adding all the discount ranges](https://docs.tempomonitors.com/scraper-commands/deals-scraper-commands). At this point all of items for the discount rages that we have added will be going to the access channel we have used above.

```
!m scraper add amazondeals "0-9"
!m scraper add amazondeals "10-19"
!m scraper add amazondeals "20-29"
!m scraper add amazondeals "30-39"
!m scraper add amazondeals "40-49"
!m scraper add amazondeals "50-59"
!m scraper add amazondeals "60-69"
!m scraper add amazondeals "70-79"
!m scraper add amazondeals "80-89"
!m scraper add amazondeals "90-99"
```

{% hint style="info" %}
You do not need to add all of the discount ranges if you do not wish to.
{% endhint %}

***

And for the final step we will be using the [forwarding ](https://docs.tempomonitors.com/forwarding-commands#adding-a-forwarding-rule)command to forward specific discount ranges to their respective channels.&#x20;

You can forward multiple discount ranges to the same channel.&#x20;

In this example we have a channel for 0-50% so we don't need to forward those ranges to that channel as they will be going in there by default as we have used that for the access channel. \
\
So I start forwarding from "50-59" onwards.

```
!m forward add amazondeals scraper "50-59" #amazon-50-79
!m forward add amazondeals scraper "60-69" #amazon-50-79
```

First we forward the "50-59" and "60-69" discount ranges to the #amazon-50-70 channel.

And lastly we will forward the "70-79", "80-89" and "90-99" discount ranges to the #amazon-70-100 channel.

```
!m forward add amazondeals scraper "70-79" #amazon-70-100
!m forward add amazondeals scraper "80-89" #amazon-70-100
!m forward add amazondeals scraper "90-99" #amazon-70-100
```
