# Insights Apmiindia — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access comprehensive financial data on Indian PMS providers and investment approaches, including AUM breakdowns, industry dashboards, and detailed provider information. Search and compare investment strategies, view discretionary AUM details, and generate insight reports to analyze the PMS market landscape.

**Category:** Finance & Markets | **Website:** [insights.apmiindia.org/](https://insights.apmiindia.org/) | **Docs:** [parse.bot/marketplace/81b5fde0-ad59-431b-b240-6e921d526087/insights-apmiindia-org-api](https://parse.bot/marketplace/81b5fde0-ad59-431b-b240-6e921d526087/insights-apmiindia-org-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_aum_breakup

Returns AUM breakup by strategy (Equity, Debt, Hybrid, Multi Asset) and service type (Discretionary, Non-Discretionary). Data is available only for the most recent reporting month. When year and month are provided, results are filtered to that date; if no data exists for the requested period, an empty items array is returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | No | Month in MM format to filter results (e.g. 12). Used together with year to filter to a specific reporting period. |
| `year` | string | No | Year in YYYY format to filter results (e.g. 2025). Used together with month to filter to a specific reporting period. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/get_aum_breakup \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<string>","year":"<string>"}'
```

### get_discretionary_aum_details

Returns AUM details filtered to Discretionary (serviceType D) investment approaches only. Data is available for the most recent reporting month. When year and month are provided, results are filtered to that date; if no data exists for the requested period, an empty items array is returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | No | Month in MM format to filter results (e.g. 12). Used together with year to filter to a specific reporting period. |
| `year` | string | No | Year in YYYY format to filter results (e.g. 2025). Used together with month to filter to a specific reporting period. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/get_discretionary_aum_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<string>","year":"<string>"}'
```

### get_ia_insight_report

Returns the full Investment Approach Insight Report, including general info (strategy, benchmark, inception date, AUM, purpose), fund manager details, and time-series performance metrics compared to benchmark.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `uuid` | string | Yes | Investment Approach UUID (e.g. from search_investment_approaches_and_pms results[*].iaId or list_investment_approaches items[*].pmsIaId). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/get_ia_insight_report \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uuid":"<string>"}'
```

### get_industry_dashboard

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/get_industry_dashboard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_pms_provider_details

Returns full details for a specific PMS provider, including AUM breakdown by strategy and historical AUM trend data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `uuid` | string | Yes | PMS Provider UUID (e.g. from search_investment_approaches_and_pms results[*].pmsId). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/get_pms_provider_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uuid":"<string>"}'
```

### list_investment_approaches

Returns a paginated list of Investment Approaches with performance metrics and benchmark comparisons. Results are sorted by one-year return descending. Supports filtering by strategy, service type, and pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `aum_range` | string | No | AUM range filter passed to the upstream API. |
| `dnd_filter` | string | No | Discretionary/Non-Discretionary filter value passed to the upstream API. |
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `service_type` | integer | No | Service type filter. |
| `strategy` | integer | No | Strategy filter. |
| `track_record` | string | No | Track record filter value passed to the upstream API. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/list_investment_approaches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"aum_range":"<string>","dnd_filter":"<string>","page":"<integer>","page_size":"<integer>","service_type":"<integer>","strategy":"<integer>","track_record":"<string>"}'
```

### search_investment_approaches_and_pms

Searches for Investment Approaches and PMS providers by keyword. Returns matching results with IA and PMS identifiers. Query must be at least 3 characters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword, minimum 3 characters. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insights-apmiindia-org-api-81b5fde0/search_investment_approaches_and_pms \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
