Checking the suggested prices for your products
We offer suggested prices for your products that may benefit from price adjustments. These are based on 7-day simulations that consider price elasticity and performance impacts. You can also check predictions on how it will impact conversions and impressions.
Please note that this is only a prediction that can assist you in pricing your auctions
The query
I_ProductPriceInsights
will let you get this information by an array of productId
, which you can find for your auctions through S_stock
query.
Example
Query
query {
I_productPriceInsights(
currency: "PLN"
productIds: ["c7740217-a023-11ef-9a92-d45d646755af", "c1be784c-a023-11ef-a064-d45d646755af"]
) {
productId
suggestedPrice {
amount
currency
}
suggestedPriceEur {
amount
currency
}
syncPrice {
amount
currency
}
suggestedPriceDifference {
amount
currency
}
suggestedPriceDifferencePercentage
predictedConversionsChangeFraction
}
}
Response
{
"data": {
"I_productPriceInsights": [
{
"productId": "c7740217-a023-11ef-9a92-d45d646755af",
"suggestedPrice": {
"amount": 1200,
"currency": "PLN"
},
"suggestedPriceEur": {
"amount": 110,
"currency": "EUR"
},
"syncPrice": {
"amount": 1400,
"currency": "PLN"
},
"suggestedPriceDifference": {
"amount": 200,
"currency": "PLN"
},
"suggestedPriceDifferencePercentage": 0.1428,
"predictedConversionsChangeFraction": 0.23333 //means a predicted 23% increase in conversions
},
{
"productId": "c1be784c-a023-11ef-a064-d45d646755af"
//...more fields on this productId
}
]
}
}