# OJK โ€” Zapi reference > Indonesian financial regulator data โ€” assets under management across every regulated investment product class. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/ojk - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## OJK **Category:** finance ยท **Slug:** `ojk` **Detail page:** https://zpi.web.id/api/finance/ojk Indonesian financial regulator data โ€” assets under management across every regulated investment product class. **Tags:** indonesia, regulator, mutual-funds, aum, statistics ### Assets under management Industry AUM by product class, as the regulator publishes it. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:ojk/aum` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `product` | enum(all|KPD|Reksadana|DINFRA|RDPT|EBA|DIRE) | query | no | Restrict to one product type. Default all | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:ojk/aum?product=Reksadana" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:ojk/aum?product=Reksadana", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:ojk/aum?product=Reksadana", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 6, "items": [ { "aum": 309639542743730, "asOf": "2026-06", "product": "KPD", "reported": true, "description": "Discretionary fund management" }, { "aum": 56903632196214, "asOf": "2026-07", "product": "Reksadana", "reported": true, "description": "Mutual funds" }, { "aum": null, "asOf": null, "product": "DINFRA", "reported": false, "description": "Infrastructure investment fund" }, { "aum": null, "asOf": null, "product": "RDPT", "reported": false, "description": "Limited participation mutual fund" }, { "aum": 3664784131297, "asOf": "2026-06", "product": "EBA", "reported": true, "description": "Asset-backed securities" }, { "aum": 11254726500028, "asOf": "2026-06", "product": "DIRE", "reported": true, "description": "Real estate investment fund" } ], "source": "ojk", "product": "all", "currency": "IDR", "totalAum": 381462685571269, "latestPeriod": "2026-07" } ``` --- _Generated: 2026-08-02T14:23:14.025Z_