NFO Object Reference

Complete reference for the NFO (New Fund Offer) object returned by the IPO Guruji API.

The NFO object represents a New Fund Offer from a mutual fund house (AMC) in India. NFO data is sourced from AMFI and individual AMC websites. NFO endpoints are available on Basic, Pro, and Enterprise plans.

Basic PlanPro PlanEnterprise Plan

Example Response

{
  "id": "nfo_xyz789abc012",
  "slug": "axis-nifty-50-index-fund",
  "name": "Axis Nifty 50 Index Fund",
  "schemeName": "Axis Nifty 50 Index Fund - Direct Plan - Growth",
  "amcCode": "AXIS",
  "amcName": "Axis Mutual Fund",
  "category": "INDEX",
  "subCategory": "Large Cap",
  "status": "OPEN",
  "nfoOpenDate": "2024-01-15T00:00:00.000Z",
  "nfoCloseDate": "2024-01-29T00:00:00.000Z",
  "reopenDate": "2024-02-05T00:00:00.000Z",
  "minInvestment": 5000,
  "sipAvailable": true,
  "sipMinAmount": 500,
  "riskLevel": "HIGH",
  "fundManager": "Ashish Naik, Deepak Agrawal",
  "benchmark": "Nifty 50 TRI",
  "expenseRatio": 0.35,
  "exitLoad": "1% if redeemed within 1 year"
}

Core Fields

FieldTypeDescriptionExample
idstringUnique identifier for the NFO record."nfo_xyz789abc012"
slugstringURL-friendly unique slug for the NFO, used in API paths."axis-nifty-50-index-fund"
namestringShort display name of the fund."Axis Nifty 50 Index Fund"
schemeNamestringFull official scheme name as registered with AMFI."Axis Nifty 50 Index Fund - Direct Plan - Growth"
amcCodestringUnique code identifying the Asset Management Company."AXIS"
amcNamestringFull name of the Asset Management Company managing the fund."Axis Mutual Fund"

Classification

FieldTypeDescriptionExample
categorystringPrimary category of the mutual fund scheme."EQUITY"
subCategorystring | nullSub-category providing more specific classification within the primary category."Large Cap"
statusstringCurrent status of the NFO in its lifecycle."OPEN"

category enum values

ValueDescription
EQUITYPrimarily invests in equities (stocks). Includes large cap, mid cap, small cap, multi cap, and sectoral funds.
DEBTPrimarily invests in fixed-income instruments like bonds, debentures, and government securities.
HYBRIDInvests in a mix of equity and debt instruments. Includes balanced advantage, aggressive hybrid, and conservative hybrid funds.
INDEXPassively tracks a specific market index like Nifty 50, Sensex, or sector indices.
FOFFund of Funds. Invests in other mutual fund schemes rather than directly in securities.
OTHERCategories not covered above, including solution-oriented and retirement funds.

status enum values

ValueDescription
OPENNFO subscription period is currently active and accepting applications.
CLOSEDNFO subscription period has ended. The fund may reopen for continuous subscription later.
UPCOMINGNFO has been announced but subscription period has not yet started.

Dates

FieldTypeDescriptionExample
nfoOpenDatestring | nullNFO subscription open date in ISO 8601 format."2024-01-15T00:00:00.000Z"
nfoCloseDatestring | nullNFO subscription close date in ISO 8601 format."2024-01-29T00:00:00.000Z"
reopenDatestring | nullDate when the fund reopens for continuous subscription after the NFO period. Null if not yet announced."2024-02-05T00:00:00.000Z"

Investment Details

FieldTypeDescriptionExample
minInvestmentnumberMinimum lump sum investment amount in INR during the NFO period.5000
sipAvailablebooleanWhether Systematic Investment Plan (SIP) is available for this fund.true
sipMinAmountnumber | nullMinimum SIP amount in INR. Null if SIP is not available.500

Fund Details

FieldTypeDescriptionExample
riskLevelstringSEBI-mandated risk classification of the fund. Ranges from Very Low to Very High."HIGH"
fundManagerstring | nullName of the fund manager(s) responsible for managing the scheme."Ashish Naik, Deepak Agrawal"
benchmarkstring | nullBenchmark index against which the fund performance is measured."Nifty 50 TRI"
expenseRationumber | nullTotal expense ratio (TER) as a percentage. Represents the annual cost of managing the fund.0.35
exitLoadstring | nullDescription of exit load charges applicable if units are redeemed before a certain period."1% if redeemed within 1 year"

Notes

  • NFO data is sourced from AMFI and updated 3 times daily (8 AM, 2 PM, 8 PM IST).
  • The expenseRatio may change after the NFO period. Check the AMC website for the latest TER.
  • Exit load terms are provided as descriptions. Actual charges may have more detailed slabs.
  • Use the amcCode to filter NFOs by a specific Asset Management Company.
  • All date fields use ISO 8601 format in UTC timezone.