1. Net Asset Value
  • Mutual Funds API - Introduction
  • Authentication, Request & Response
  • Code Samples & API Trial
  • List of APIs
  • Mutual Funds APIs
    • Asset Management Company
      • GetAMCMaster
    • Scheme
      • GetSchemeMaster
      • GetSchemeTypeMaster
      • GetSchemeCategoryMaster
    • Net Asset Value
      • GetNAV
        GET
      • GetNAVHistory
        GET
    • Assets Under Management
      • GetAUM
      • GetAUMHistory
      • GetAUMSchemeComparison
      • GetAUMTopGainersLosers
    • Portfolio Holdings
      • GetHoldings
      • GetHoldingsSearch
      • GetHoldingsWhatChanged
      • GetHoldingsByType
    • New Fund Offers
      • GetNewFundOffers
  • Helper Functions
    • GetLimitation
    • GetServerInfo
  • Glossary
    • Glossary
  • Diagnostic API Responses
    • Diagnostic API Responses
  • Release Notes
    • 📢 Release Notes
  1. Net Asset Value

GetNAVHistory

GET
https://test.lisuns.com:4532/GetNAVHistory
▶️ 'Try It' now !
pointer.gif
The GetNAVHistory returns historical NAV data for mutual fund schemes, covering codes and names, ISINs for growth/dividend options, past values, repurchase/sale prices, and timestamps.

What is returned?#

Debt (16) , Equity (12), Hybrid (7) , Other (14) , Solution Oriented (2)
For details, please see the complete glossary.

Sample Response#

JSON
XML
CSV
CsvContent
{
"Value": [
{
"Code": "149263",
"Value": 13.58,
"RepurchasePrice": 0,
"SalePrice": 0,
"Date": "02-09-2026 00:00:00"
},
{
"Code": "149266",
"Value": 13.58,
"RepurchasePrice": 0,
"SalePrice": 0,
"Date": "02-09-2026 00:00:00"
},
{
"Code": "149265",
"Value": 14.35,
"RepurchasePrice": 0,
"SalePrice": 0,
"Date": "02-09-2026 00:00:00"
}
]
}

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://test.lisuns.com:4532/GetNAVHistory?accessKey=30bd31ff-fb7e-4d6c-a76e-06750e3eeb09&detailedInfo=false&isin=&name=&code=&date=&max=undefined&type=undefined&category=undefined&subcategory=undefined&dTFormat=string&format=Json'

Responses

🟢200
application/json
Success
Body

Example
{
    "value": [
        {
            "code": "string",
            "name": "string",
            "value": "string",
            "repurchasePrice": "string",
            "salePrice": "string",
            "isinGrowth": "string",
            "isinDivPayout": "string",
            "isinDivReinvest": "string",
            "date": "02-25-2025 18:00:00"
        }
    ],
    "count": 0
}
Previous
GetNAV
Next
GetAUM
Built with