{
  "tool_id": "options-greeks-explorer",
  "slug": "options-greeks-explorer",
  "path": "/options-greeks-explorer/",
  "mode": "client_side",
  "usage": "Client-side pricer. Open https://aifinhub.io/options-greeks-explorer/ and drag inputs to see delta/gamma/theta/vega/rho + payoff curve update live.",
  "methodology": "https://aifinhub.io/methodology/options-greeks-explorer/",
  "sample_input": {
    "tool": "options-greeks-explorer",
    "spot": 100,
    "strike": 105,
    "vol_pct": 25,
    "days_to_exp": 30,
    "rf_pct": 4.5,
    "div_pct": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "spot": {
        "type": "number"
      },
      "strike": {
        "type": "number"
      },
      "vol_pct": {
        "type": "number"
      },
      "days_to_exp": {
        "type": "number"
      },
      "rf_pct": {
        "type": "number"
      },
      "div_pct": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "spot",
      "strike",
      "vol_pct",
      "days_to_exp",
      "rf_pct",
      "div_pct"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "price": {
        "type": "number"
      },
      "delta": {
        "type": "number"
      },
      "gamma": {
        "type": "number"
      },
      "theta_per_day": {
        "type": "number"
      },
      "vega_per_1pct": {
        "type": "number"
      },
      "rho_per_1pct": {
        "type": "number"
      }
    }
  }
}
