← Back to Productivity & Business
Indian Stock Fundamental Analyzer
AI-powered fundamental analysis for long-term investors
https://hub.toolweb.in/tools/indian-stock-fundamental-analyzer/
Endpoints
GET
/
Root
POST
/analyze
Analyze Stock
Request Body (JSON)
{
"stock_ticker": "<string>",
"investment_horizon": "<string>"
}
GET
/health
Health Check
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/tools/indian-stock-fundamental-analyzer/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/indian-stock-fundamental-analyzer/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/indian-stock-fundamental-analyzer/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.