insights.apmiindia.org APIinsights.apmiindia.org ↗
Access AUM breakdowns, PMS provider profiles, investment approach performance, and industry dashboards for the Indian PMS market via the APMI Insights API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/d4c44c28-65e5-4ee4-be82-aedeb54cb0a3/get_industry_dashboard' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns industry-level summary from the dashboard, including total AUM and strategy-wise breakdown (Equity, Debt, Hybrid, Multi Asset), plus historical monthly AUM trend data from April 2023 onwards.
No input parameters required.
{
"type": "object",
"fields": {
"trend": "array of monthly AUM data points with asOnDate and value fields",
"summary": "object containing asOnDate, total AUM, and per-strategy AUM totals (equityTotal, debtTotal, hybridTotal, multiAssetTotal)"
},
"sample": {
"data": {
"trend": [
{
"value": 417634.56,
"asOnDate": "01-01-2024"
},
{
"value": 285837.53,
"asOnDate": "01-04-2023"
}
],
"summary": {
"total": 530657.56,
"asOnDate": "01-03-2026",
"debtTotal": 52246.6,
"equityTotal": 370078.5,
"hybridTotal": 21027.96,
"multiAssetTotal": 87304.51
}
},
"status": "success"
}
}About the insights.apmiindia.org API
The APMI Insights API provides 7 endpoints covering the Indian Portfolio Management Services (PMS) market, including industry-level AUM dashboards, strategy-wise breakdowns, and detailed investment approach reports. Endpoints like get_ia_insight_report return fund manager details, benchmark comparisons, and time-series return percentages from inception. Whether you need aggregate industry data or a specific PMS provider's SEBI registration and AUM history, this API surfaces it in structured JSON.
Industry Dashboard and AUM Data
The get_industry_dashboard endpoint returns the current industry snapshot alongside a monthly AUM trend series running from April 2023 onwards. The summary object includes equityTotal, debtTotal, hybridTotal, and multiAssetTotal fields alongside total AUM and the reporting date. The trend array pairs each asOnDate with its corresponding value, making it straightforward to plot historical movement.
get_aum_breakup and get_discretionary_aum_details both accept optional year (YYYY) and month (MM) parameters to target a specific reporting period. Each returns an items array where each record carries strategyName, asOnDate, serviceType (D or N), and aum. get_discretionary_aum_details is scoped exclusively to Discretionary strategies (serviceType always D), while get_aum_breakup covers both Discretionary and Non-Discretionary service types.
Investment Approach Listing and Search
list_investment_approaches delivers a paginated list of Investment Approaches sorted by one-year return descending. You can filter by strategy (0–3 for Equity, Debt, Hybrid, Multi-Asset) and service_type (1 for Discretionary, 2 for Non-Discretionary, 3 for Both), with page and page_size controlling pagination. Results include pmsProviderName, iaName, benchmarkName, iaStrategy, and iaServiceType among other fields.
For keyword-based lookup, search_investment_approaches_and_pms accepts a query of at least 3 characters and returns matched records with iaId, pmsId, iaName, and pmsName. These identifiers feed directly into get_pms_provider_details and get_ia_insight_report. The insight report endpoint returns an info object (inception date, minimum investment amount, purpose), a managers array with each manager's name, email, and work experience, and a performance array comparing IA returns to benchmark across one-month through since-inception periods.
- Track monthly industry-wide AUM trends across Equity, Debt, Hybrid, and Multi-Asset strategies using get_industry_dashboard trend data.
- Compare Discretionary vs Non-Discretionary AUM allocation by strategy for a specific reporting month via get_aum_breakup.
- Build a PMS screener that filters investment approaches by strategy type and service type using list_investment_approaches.
- Retrieve SEBI registration numbers and total AUM for a specific PMS provider using get_pms_provider_details.
- Surface fund manager work experience and contact details alongside benchmark-relative performance from get_ia_insight_report.
- Power a search-as-you-type feature for PMS providers and investment approaches using search_investment_approaches_and_pms.
- Monitor discretionary AUM changes month-over-month by querying get_discretionary_aum_details with different year and month parameters.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.