# 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="/files/j0iOHEofnjzzER35b6cD" alt=""><figcaption><p>Example channel layout for Amazon deals scraper</p></figcaption></figure>

We will first need to [add access](/admin-commands/access-command.md) 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](/scraper-commands/deals-scraper-commands.md). 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 ](/scraper-commands/forwarding-commands.md#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
```


---

# 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://docs.tempomonitors.com/scraper-commands/deals-scraper-commands/example-deal-scraper-setup.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.
