> For the complete documentation index, see [llms.txt](https://docs.ecwid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ecwid.com/discounts-and-tips/add-discounts-to-the-store/bulk-discount-prices-for-products.md).

# Bulk discount prices for products

There is a way to set up bulk discount prices for a specific product.&#x20;

{% hint style="info" %}
Bulk discount prices for products can stack with other discount types.
{% endhint %}

Bulk discount price only works for one product and can't be customized, but it's fully automated and clearly visible to customers even on the product page:

<figure><img src="/files/eT4d4Oi7aWAdA2kRJvPv" alt=""><figcaption></figcaption></figure>

### Add bulk discount prices to a product

To add a bulk discount price, you need to know the internal product ID – `items` > `id` field value in the [Search products](/api-reference/rest-api/products/search-products.md#items) call.

{% hint style="info" %}
If you don't yet have an app for Ecwid API access, start with the following [instructions](https://docs.ecwid.com/discounts-and-tips/add-discounts-to-the-store/spaces/uOzT5egoVTAjMJwRuMQT/pages/IhHAmacGKQdbD0Fe0IUw#step-2.-get-your-first-application).
{% endhint %}

Make sure your app has the `update_products` access scope required to manage products' bulk discount prices.

Example request:

```http
PUT /api/v3/STOREID/products/PRODUCTID HTTP/1.1
Host: app.ecwid.com
Content-Type: application/json
Authorization: Bearer secret_token

{
    "price": 100,
    "wholesalePrices": [
        {
            "quantity": 10,
            "price": 95
        },
        {
            "quantity": 50,
            "price": 90            
        }
    ]
}
```

To add bulk prices, change `STOREID` with your store ID, `PRODUCTID` with the internal ID of the product, and `secret_token` with the secret access token of your app.

The example request adds a 5% discount when the product quantity in the cart reaches 10, and a 10% discount when it reaches 50.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.ecwid.com/discounts-and-tips/add-discounts-to-the-store/bulk-discount-prices-for-products.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
