← Back to Productivity & Business

Mutual Fund Evaluator

AI-powered fund analysis personalized to your investor profile

https://hub.toolweb.in/tools/mutual-fund-evaluator/

Endpoints

GET /

Root

POST /evaluate

Evaluate Fund

Request Body (JSON)

{
  "fund_name": "<string>",
  "investor_age": "<integer>",
  "investment_goal": "<string>",
  "investment_horizon": "<string>",
  "investment_mode": "<string>",
  "existing_portfolio": "<string>",
  "risk_tolerance": "<string>",
  "volatility_preference": "<string>",
  "tax_sensitivity": "<string>",
  "entry_context": "<string>"
}
GET /health

Health Check

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/tools/mutual-fund-evaluator/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/mutual-fund-evaluator/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/mutual-fund-evaluator/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.