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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
status | string | Optional | all | Filter by NFO status: open, upcoming, closed |
category | string | Optional | - | Filter by fund category: equity, debt, hybrid, solution_oriented, other |
amcCode | string | Optional | - | Filter by AMC code (e.g., hdfc, icici, sbi) |
riskLevel | string | Optional | - | Filter by risk level: low, moderately_low, moderate, moderately_high, high, very_high |
page | number | Optional | 1 | Page number for pagination |
limit | number | Optional | 10 | Number 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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Required | - | Search query string (minimum 2 characters) |
page | number | Optional | 1 | Page number for pagination |
limit | number | Optional | 10 | Number 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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
slug | string | Required | - | 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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
amcCode | string | Required | - | AMC code (e.g., hdfc, icici, sbi, axis, kotak) |
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
status | string | Optional | all | Filter by NFO status: open, upcoming, closed |
page | number | Optional | 1 | Page number for pagination |
limit | number | Optional | 10 | Number 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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | number | Optional | 1 | Page number for pagination |
limit | number | Optional | 50 | Number 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
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
code | string | Required | - | 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"