Get the list of marketplace catalog item sales volume forecasts with filtering options.
Query parameters
-
The UUID of the merchant to filter forecasts by
-
Filter by marketplace catalog item ID
-
Minimum volume to filter by (uses risk-adjusted high forecast)
Minimum value is
0. -
The page number to retrieve
Minimum value is
1. -
The number of results to return per page
Minimum value is
1, maximum value is100.
GET
/2024-09/forecasting/sales-volume-forecasts
curl \
--request GET 'https://app.merchanthq.com/api/2024-09/forecasting/sales-volume-forecasts?merchant_id=1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"links": {
"first": "https://app.merchanthq.com/api/2024-09/merchants?page=1",
"last": "https://app.merchanthq.com/api/2024-09/merchants?page=10",
"prev": "https://app.merchanthq.com/api/2024-09/merchants?page=1",
"next": "https://app.merchanthq.com/api/2024-09/merchants?page=3"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 10,
"path": "https://app.merchanthq.com/api/2024-09/merchants",
"per_page": 10,
"to": 10,
"total": 20
},
"data": [
{
"id": "1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4",
"marketplace_catalog_item_id": "1e7f0a0f-b5a9-4d1a-a2d5-d0e0c2b1c3d4",
"forecast_model": "amazon-sales-rank-v150725",
"thirty_day_sales_forecast_high": 250,
"thirty_day_sales_forecast_low": 150,
"risk_score": 25,
"risk_factors": [
"limited_volume_history"
],
"risk_adjusted_thirty_day_sales_forecast_high": 200,
"risk_adjusted_thirty_day_sales_forecast_low": 120,
"calculated_at": "2025-01-10T10:37:11Z",
"forecast_inputs": {
"risk_adjustment_factor": 0.8,
"risk_factor_scores": [
{
"additionalProperty1": 42.0,
"additionalProperty2": 42.0
}
]
},
"created_at": "2025-01-10T10:37:11Z",
"updated_at": "2025-01-10T10:37:11Z"
}
]
}
Response examples (401)
{
"message": "Unauthorized"
}
Response examples (404)
{
"message": "Not found"
}