Skip to content
WealthTicker

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

EndpointTierDescription
GET /api/v1/fundsAllScreener/search. Params: q (query expression), search, category, subCategory, amc, plan, option, minAum, maxExpenseRatio, codes, sort, dir, page, limit (≤500).
GET /api/v1/funds/{code}AllOne fund with computed metrics (returns, risk, rating).
GET /api/v1/funds/{code}/navAllNAV history as [{date, nav}]. Params: from, to (YYYY-MM-DD). Free tier: trailing 1 year.
GET /api/v1/categoriesAllEvery SEBI sub-category with peer-averaged returns and TER.
GET /api/v1/amcsAllAMC directory with slugs.
GET /api/v1/amcs/{slug}AllOne AMC — profile, scheme counts, top funds.
GET /api/v1/funds/{code}/overlapProPortfolio-overlap peers ranked by shared equity holdings.
GET /api/v1/funds/{code}/portfolio-statsProPortfolio 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

PlanPriceRequestsIncludes
Free₹0100/day · 2,000/monthTrailing 1y NAV history
Starter₹499/mo10,000/day · 200,000/monthFull NAV history
Pro₹1,999/mo50,000/day · 1,000,000/monthFull 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.