NFO Endpoints

Access New Fund Offer data from AMFI and AMC sources.

Plan Requirement: Basic or higher

NFO endpoints require a Basic plan or higher. Free plan users will receive a 403 response.

New Fund Offers (NFOs) are new mutual fund schemes launched by Asset Management Companies (AMCs). IPO Guruji aggregates NFO data from AMFI and AMC websites, updated three times daily.

GET/v1/nfoBasic+

Retrieve a paginated list of NFOs with optional filtering.

Query Parameters

ParameterTypeRequiredDefaultDescription
statusstringOptionalallFilter by NFO status: open, upcoming, closed
categorystringOptional-Filter by fund category: equity, debt, hybrid, solution_oriented, other
amcCodestringOptional-Filter by AMC code (e.g., hdfc, icici, sbi)
riskLevelstringOptional-Filter by risk level: low, moderately_low, moderate, moderately_high, high, very_high
pagenumberOptional1Page number for pagination
limitnumberOptional10Number of results per page (max 100)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo?status=open&category=equity&limit=5" \  -H "X-API-Key: ipg_live_your_api_key_here"
Success Response200
{
  "success": true,
  "data": [
    {
      "id": "nfo_hd4c3q2026",
      "slug": "hdfc-innovation-fund",
      "name": "HDFC Innovation Fund",
      "amcCode": "hdfc",
      "amcName": "HDFC Asset Management Company",
      "category": "equity",
      "subCategory": "Thematic",
      "riskLevel": "very_high",
      "status": "open",
      "minInvestment": 500,
      "minSipAmount": 500,
      "exitLoad": "1% if redeemed within 1 year",
      "expenseRatio": null,
      "benchmark": "NIFTY 500 TRI",
      "fundManager": "Rahul Sharma",
      "dates": {
        "openDate": "2026-02-05T00:00:00.000Z",
        "closeDate": "2026-02-19T00:00:00.000Z",
        "allotmentDate": "2026-02-24T00:00:00.000Z"
      },
      "sipAvailable": true,
      "lumpSumAvailable": true,
      "objective": "To generate long-term capital appreciation by investing in equity and equity-related instruments of companies engaged in innovation-driven themes."
    }
  ],
  "meta": {
    "page": 1,
    "limit": 5,
    "total": 1,
    "totalPages": 1,
    "hasNextPage": false,
    "hasPrevPage": false
  },
  "links": {
    "self": "/v1/nfo?status=open&category=equity&limit=5&page=1",
    "next": null,
    "prev": null
  },
  "disclaimer": "Data aggregated from publicly accessible sources. Not investment advice.",
  "timestamp": "2026-02-09T14:30:00.000Z",
  "requestId": "req_n7f8o9p0q1"
}
GET/v1/nfo/searchBasic+

Search for NFOs by scheme name.

Query Parameters

ParameterTypeRequiredDefaultDescription
qstringRequired-Search query string (minimum 2 characters)
pagenumberOptional1Page number for pagination
limitnumberOptional10Number of results per page (max 100)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo/search?q=hdfc+innovation" \  -H "X-API-Key: ipg_live_your_api_key_here"
GET/v1/nfo/:slugBasic+

Retrieve detailed information for a single NFO by its slug.

Path Parameters

ParameterTypeRequiredDefaultDescription
slugstringRequired-URL-friendly slug of the NFO (e.g., hdfc-innovation-fund)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo/hdfc-innovation-fund" \  -H "X-API-Key: ipg_live_your_api_key_here"
GET/v1/nfo/amc/:amcCodeBasic+

Retrieve all NFOs from a specific Asset Management Company.

Path Parameters

ParameterTypeRequiredDefaultDescription
amcCodestringRequired-AMC code (e.g., hdfc, icici, sbi, axis, kotak)

Query Parameters

ParameterTypeRequiredDefaultDescription
statusstringOptionalallFilter by NFO status: open, upcoming, closed
pagenumberOptional1Page number for pagination
limitnumberOptional10Number of results per page (max 100)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo/amc/hdfc?status=open" \  -H "X-API-Key: ipg_live_your_api_key_here"
GET/v1/nfo/amcsBasic+

List all Asset Management Companies with their codes and basic details.

Query Parameters

ParameterTypeRequiredDefaultDescription
pagenumberOptional1Page number for pagination
limitnumberOptional50Number of results per page (max 100)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo/amcs" \  -H "X-API-Key: ipg_live_your_api_key_here"
Success Response200
{
  "success": true,
  "data": [
    {
      "code": "hdfc",
      "name": "HDFC Asset Management Company",
      "shortName": "HDFC AMC",
      "totalNfos": 12,
      "activeNfos": 3
    },
    {
      "code": "icici",
      "name": "ICICI Prudential Asset Management Company",
      "shortName": "ICICI Prudential",
      "totalNfos": 8,
      "activeNfos": 2
    },
    {
      "code": "sbi",
      "name": "SBI Funds Management Limited",
      "shortName": "SBI Mutual Fund",
      "totalNfos": 10,
      "activeNfos": 1
    }
  ],
  "meta": {
    "page": 1,
    "limit": 50,
    "total": 45,
    "totalPages": 1,
    "hasNextPage": false,
    "hasPrevPage": false
  },
  "links": {
    "self": "/v1/nfo/amcs?page=1&limit=50",
    "next": null,
    "prev": null
  },
  "disclaimer": "Data aggregated from publicly accessible sources. Not investment advice.",
  "timestamp": "2026-02-09T14:30:00.000Z",
  "requestId": "req_a7m8c9l0s1"
}
GET/v1/nfo/amcs/:codeBasic+

Retrieve details for a specific AMC by its code.

Path Parameters

ParameterTypeRequiredDefaultDescription
codestringRequired-AMC code (e.g., hdfc, icici, sbi)
Example Request
curl -X GET "https://api.ipoguruji.com/v1/nfo/amcs/hdfc" \  -H "X-API-Key: ipg_live_your_api_key_here"

Related Pages