{
  "tool_id": "marketplace_listing_roi",
  "slug": "marketplace-listing-roi",
  "path": "/marketplace-listing-roi/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/marketplace-listing-roi/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/marketplace-listing-roi.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/marketplace-listing-roi/",
  "sample_input": {
    "tool": "marketplace_listing_roi",
    "listing_fee_monthly": 29,
    "revenue_share_percent": 20,
    "expected_monthly_visitors": 5000,
    "conversion_rate_percent": 2,
    "avg_revenue_per_user_monthly": 19
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "listing_fee_monthly": {
        "type": "number"
      },
      "revenue_share_percent": {
        "type": "number"
      },
      "expected_monthly_visitors": {
        "type": "number"
      },
      "conversion_rate_percent": {
        "type": "number"
      },
      "avg_revenue_per_user_monthly": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "listing_fee_monthly",
      "revenue_share_percent",
      "expected_monthly_visitors",
      "conversion_rate_percent",
      "avg_revenue_per_user_monthly"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "monthlyConversions": {
        "type": "number"
      },
      "grossMonthlyRevenue": {
        "type": "number"
      },
      "marketplaceFeeAmount": {
        "type": "number"
      },
      "netMonthlyMargin": {
        "type": "number"
      },
      "netMarginPercent": {
        "type": "number"
      },
      "breakEvenVisitors": {
        "type": "number"
      },
      "breakEvenConversions": {
        "type": "number"
      }
    }
  }
}
