{
  "tool_id": "price_elasticity",
  "slug": "price-elasticity-calculator",
  "path": "/price-elasticity-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/price-elasticity-calculator/?<params>",
  "sample_input": {
    "tool": "price_elasticity",
    "current_price": 100,
    "new_price": 110,
    "current_demand": 1000,
    "new_demand": 920
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "current_price": {
        "type": "number"
      },
      "new_price": {
        "type": "number"
      },
      "current_demand": {
        "type": "number"
      },
      "new_demand": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "current_price",
      "new_price",
      "current_demand",
      "new_demand"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "priceChangePct": {
        "type": "number"
      },
      "demandChangePct": {
        "type": "number"
      },
      "elasticity": {
        "type": "number"
      },
      "elasticityType": {
        "type": "string"
      },
      "currentRevenue": {
        "type": "number"
      },
      "newRevenue": {
        "type": "number"
      },
      "revenueDelta": {
        "type": "number"
      },
      "revenueDeltaPct": {
        "type": "number"
      },
      "recommendation": {
        "type": "string"
      }
    }
  }
}
