Skip to main content

AMFI — mutual fund scheme & NAV

tip

Status: LIVE — Real-time data from the upstream regulator. Updated on the regulator's publication cadence.

What it does

AMFI publishes daily NAV files, scheme details, and AMC mappings for every Indian mutual fund. Our API normalizes their daily text dumps into a queryable JSON surface with consistent scheme codes, ISIN cross-references, and historical NAV time-series.

Base URL

https://amfi-mf.sahayakonline.co.in/v1/

Endpoints

MethodPathDescription
GET/healthLiveness probe
GET/v1/amfi/scheme/{scheme_code}Scheme metadata + latest NAV
GET/v1/amfi/scheme/{scheme_code}/navHistorical NAV time-series with optional from/to params
GET/v1/amfi/amc/{amc_id}/schemesAll schemes under a single AMC
GET/v1/amfi/search?q=<query>Free-text search over scheme name + AMC

Sample request

curl -sS https://amfi-mf.sahayakonline.co.in/v1/amfi/scheme/119551 \
-H "Authorization: Bearer $SAHAYAK_KEY" \
-H "Accept: application/json"

Sample response

{
"spec_ref": "spec_V3_03_AMFI_Mutual_Fund_Scheme_and_NAV_API",
"endpoint": "/v1/amfi/scheme/119551",
"method": "GET",
"results": [
{
"scheme_code": "119551",
"scheme_name": "Parag Parikh Flexi Cap Fund - Direct - Growth",
"amc": "PPFAS Mutual Fund",
"category": "Equity - Flexi Cap",
"isin_growth": "INF879O01019",
"latest_nav": 78.4321,
"nav_date": "2026-05-06"
}
],
"meta": { "fixture_mode": false, "url": "https://amfi-mf.sahayakonline.co.in/v1/" }
}

Error codes

CodeMeaningRecommended action
400Malformed request (missing required param, invalid format)Fix request shape. Response body includes error.field pinpointing the issue.
401Missing or invalid Authorization headerVerify key prefix matches your tier and that the header is Authorization: Bearer ….
403Key valid but not entitled to this endpointSandbox keys cannot call live-tier endpoints. Upgrade or request entitlement.
404Resource not foundCheck identifier format. Some endpoints return 200 with empty results[] instead of 404 — verify the endpoint convention.
429Rate limit exceededHonor Retry-After header. Sandbox 30 r/m, Starter 300 r/m, Growth 1500 r/m.
503Upstream regulator unreachable after retriesLive-tier only. Sahayak retries 3× with backoff before surfacing. Implement circuit-breaker on caller side.

Rate limits

TierRate limitMonthly cap
Sandbox30 r/min1,000 live calls (shared across 3 LIVE endpoints)
Starter300 r/min10,000 live calls
Growth1,500 r/min100,000 live calls
Scalecustom500,000+

SLA reference

See Status & SLA for uptime targets, latency targets, and incident communication. NAV updates land within 90 minutes of AMFI's daily 23:00 IST publication.