Catalog/ecom-aov

Calculators

Average Order Value (AOV) API

Compute Average Order Value (AOV = totalRevenue / numberOfOrders) with a high/moderate/low rating and inputs echoed for audit. Deterministic e-commerce KPI. Answers 'what is my AOV','average order value from revenue and orders'.

Price$0.01per request
MethodPOST
Route/v1/calc/ecom-aov
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
ecomaovecommercerevenueorderskpiretailcalc
API URLhttps://x402.hexl.dev/v1/calc/ecom-aov
Integration docs
Example request
{
  "revenue": 50000,
  "orders": 625
}
Example response
{
  "formula": "AOV = totalRevenue / numberOfOrders",
  "revenue": 50000,
  "orders": 625,
  "aov": 80,
  "rating": "moderate"
}
Input schema
{
  "type": "object",
  "required": [
    "revenue",
    "orders"
  ],
  "properties": {
    "revenue": {
      "type": "number",
      "description": "Total revenue (currency)",
      "examples": [
        50000
      ]
    },
    "orders": {
      "type": "number",
      "description": "Number of orders",
      "examples": [
        625
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}