# 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.

> Monitor and compare Portfolio Management Services performance across Indian providers with detailed metrics including fund names, assets under management, and returns across various time periods. Access comprehensive performance data from APMI members to evaluate and benchmark investment fund performance.

**Category:** Finance & Markets | **Website:** [www.apmiindia.org/apmi/welcomeiaperformance.htm](https://www.apmiindia.org/apmi/welcomeiaperformance.htm) | **Docs:** [parse.bot/marketplace/77fbff75-db55-40d7-9c5b-90d72f040032/apmiindia-org-api](https://parse.bot/marketplace/77fbff75-db55-40d7-9c5b-90d72f040032/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-apmiindia-org-api-77fbff75/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_performance

Retrieve PMS Investment Approach wise performance data for a given month. Returns all funds matching the specified strategy and service type with their AUM and returns across 1M, 3M, 6M, 1Y, 2Y, 3Y, 4Y, 5Y, and Since Inception periods. Defaults to the previous month when month/year are omitted. Each record includes the provider name, fund name, AUM in INR crores, and annualized return percentages. The response is a single page containing all matching funds (typically 100–1200 records depending on filters).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | string | No | Month number (1-12) for the performance report date. Omitting defaults to the previous month relative to current date. |
| `service_type` | string | No | Service type filter. |
| `strategy` | string | No | Strategy category filter. |
| `year` | string | No | 4-digit year for the performance report date (e.g. 2026). Omitting defaults to the year of the previous month relative to current date. |

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