Parameters
1 query
Query parameters
· 1monthsnumberOptionalNumber of months to analyze. Defaults to 6.
Default:
6Example
6Returns average order value over time. Key metric for pricing optimization, upselling effectiveness, and bundle strategies.
1 query
monthsnumberOptionalNumber of months to analyze. Defaults to 6.
661 status code documented
currentAovnumberRequiredAverage order value for the current month.
previousAovnumberRequiredAverage order value for the previous month.
aovChangenumberRequiredPercentage change in AOV vs previous month.
monthlyDataobject[]RequiredMonthly AOV trend data, oldest first.
Monthly AOV data point.
monthstringRequiredMonth in YYYY-MM format.
aovnumberRequiredAverage order value for the month.
orderCountnumberRequiredNumber of paid orders in the month.
totalRevenuenumberRequiredTotal revenue for the month.
currencystringRequiredCurrency code for all amounts (e.g., "CZK").
{
"currentAov": 0,
"previousAov": 0,
"aovChange": 0,
"monthlyData": [
{
"month": "example_month",
"aov": 0,
"orderCount": 0,
"totalRevenue": 0
}
],
"currency": "example_currency"
}GET /bff/dashboard/average-order-value
curl -X GET "https://api.bizkithub.com/bff/dashboard/average-order-value?months=6" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.