Catalog/ecom-conversion-revenue

Calculators

Conversion revenue projection API

Project revenue from traffic using revenue = visitors × conversionRate × AOV, returning conversions, revenue, and revenue-per-visitor. Deterministic funnel math. Answers 'how much revenue from this traffic','revenue from conversion rate and AOV'.

Price$0.01per request
MethodPOST
Route/v1/calc/ecom-conversion-revenue
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
ecomconversionrevenuefunneltrafficaovecommercecalc
API URLhttps://x402.hexl.dev/v1/calc/ecom-conversion-revenue
Integration docs
Example request
{
  "visitors": 20000,
  "conversionRate": 0.025,
  "aov": 80
}
Example response
{
  "formula": "revenue = visitors × conversionRate × AOV",
  "visitors": 20000,
  "conversionRate": 0.025,
  "aov": 80,
  "conversions": 500,
  "revenue": 40000,
  "revenuePerVisitor": 2
}
Input schema
{
  "type": "object",
  "required": [
    "visitors",
    "conversionRate",
    "aov"
  ],
  "properties": {
    "visitors": {
      "type": "number",
      "examples": [
        20000
      ]
    },
    "conversionRate": {
      "type": "number",
      "description": "Decimal 0-1 (e.g. 0.025 = 2.5%)",
      "examples": [
        0.025
      ]
    },
    "aov": {
      "type": "number",
      "description": "Average order value",
      "examples": [
        80
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}