BizKitHub
DocsAPI ReferenceDashboard/bff/dashboard/average-order-value
getDashboardAdmin BFF

/bff/dashboard/average-order-value

Returns average order value over time. Key metric for pricing optimization, upselling effectiveness, and bundle strategies.

DashboardgetBffDashboardAverage-order-value

Parameters

1 query

Query parameters

· 1
monthsnumberOptional

Number of months to analyze. Defaults to 6.

Default: 6
Example6

Response schema

1 status code documented

200SuccessAOV analysis with monthly trend.
currentAovnumberRequired

Average order value for the current month.

previousAovnumberRequired

Average order value for the previous month.

aovChangenumberRequired

Percentage change in AOV vs previous month.

monthlyDataobject[]Required

Monthly AOV trend data, oldest first.

Each array item:

Monthly AOV data point.

monthstringRequired

Month in YYYY-MM format.

aovnumberRequired

Average order value for the month.

orderCountnumberRequired

Number of paid orders in the month.

totalRevenuenumberRequired

Total revenue for the month.

currencystringRequired

Currency code for all amounts (e.g., "CZK").

Response example

application/json
{
  "currentAov": 0,
  "previousAov": 0,
  "aovChange": 0,
  "monthlyData": [
    {
      "month": "example_month",
      "aov": 0,
      "orderCount": 0,
      "totalRevenue": 0
    }
  ],
  "currency": "example_currency"
}

Request example

GET /bff/dashboard/average-order-value

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key