Want to sell the same content at different prices? Create a product without a fixed price and sell it via API.
A product like this can't be bought directly on the platform — only through the API. If you just need a regular sale with a fixed price on the platform itself, don't turn this mode on.
1. Click «Create» and choose «Product», «Consultation», or «Course».


2. Fill in everything as usual — title, description, cover image, content. More on creating content here.
3. In the pricing section, find the «Price by request through API» toggle.


4. Turn it on — the price will disappear.


5. Click «Save» — your product is now published.
1. Find the product in your dashboard.
2. Open the action menu (three dots).
3. Select «API Price Request».


4. Confirm.


Done! The product is now in dynamic price mode — no need to recreate it.


1. Find the product and click the three dots.
2. From the action menu, select «Disable Price Request».


3. Fill in the price field.


4. Save your changes.
Done! The product is now available for regular sale on the platform again.
Use the POST /api/v3/invoice method.
You need to send:
offerId — the ID of your product.email — the customer's email.currency — RUB, USD, or EUR.amount — the price the customer will pay.amount is required for products without a fixed price — you set the price directly in the request.
By default, GET /api/v2/products only returns products visible to all users. If your product is in «Price by request through API» mode, it's hidden from public access.
To include it in the response, add the feedVisibility parameter with a value of ALL or ONLY_HIDDEN.
1. You enabled «Price by request via API» but didn't send amount in the request:
2. The amount is below the minimum or above the maximum allowed:
Minimum — 5$, 5€ or 50₽.
Maximum—10,000$, 10,000€, or 1,000,000₽.
3. The currency you sent is disabled in your «Payment Settings»:
First, enable the currency for payments, then send the request again. More on settings here.
For more details on API integration, check the API Portal.