WealthTicker API
Indian mutual fund data over plain JSON: the AMFI scheme universe, daily NAV history, and every return/risk metric WealthTicker computes — CAGR, volatility, Sharpe, drawdowns, benchmark-relative alpha/beta and more. Sign in and create a key at Settings → API keys.
Authentication
Send your key on every request, either way:
curl -H "Authorization: Bearer wt_live_…" https://wealthticker.in/api/v1/funds?search=nifty%20index curl -H "X-Api-Key: wt_live_…" https://wealthticker.in/api/v1/funds/120716/nav?from=2025-01-01
Endpoints
| Endpoint | Tier | Description |
|---|---|---|
GET /api/v1/funds | All | Screener/search. Params: q (query expression), search, category, subCategory, amc, plan, option, minAum, maxExpenseRatio, codes, sort, dir, page, limit (≤500). |
GET /api/v1/funds/{code} | All | One fund with computed metrics (returns, risk, rating). |
GET /api/v1/funds/{code}/nav | All | NAV history as [{date, nav}]. Params: from, to (YYYY-MM-DD). Free tier: trailing 1 year. |
GET /api/v1/categories | All | Every SEBI sub-category with peer-averaged returns and TER. |
GET /api/v1/amcs | All | AMC directory with slugs. |
GET /api/v1/amcs/{slug} | All | One AMC — profile, scheme counts, top funds. |
GET /api/v1/funds/{code}/overlap | Pro | Portfolio-overlap peers ranked by shared equity holdings. |
GET /api/v1/funds/{code}/portfolio-stats | Pro | Portfolio P/E, P/B and average market cap. |
Responses
Success: { data, meta? }. Errors: { error: { code, message } } with a matching HTTP status (401 invalid_key, 403 tier_required, 429 rate_limited/monthly_limit). Every response carries X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset (daily window, resets midnight IST).
Plans
| Plan | Price | Requests | Includes |
|---|---|---|---|
| Free | ₹0 | 100/day · 2,000/month | Trailing 1y NAV history |
| Starter | ₹499/mo | 10,000/day · 200,000/month | Full NAV history |
| Pro | ₹1,999/mo | 50,000/day · 1,000,000/month | Full history + overlap & portfolio-stats endpoints |
Fair use & terms
- NAV and scheme master data are sourced from AMFI’s public feeds; computed metrics are WealthTicker’s own work.
- Use the data in your products freely with attribution; don’t resell bulk raw dumps as a competing data feed.
- Data is provided as-is, without warranty of accuracy or timeliness, and is not investment advice.
- Keys may be revoked for abuse. Only
/api/v1/*is a stable, versioned surface — other paths on this host are internal and change without notice.