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

> Search and analyze Brazilian real estate investment funds (FIIs) with detailed financial metrics, performance data, and complete dividend history to make informed investment decisions. Access comprehensive fund information including key statistics and historical payouts all in one place.

**Category:** Finance & Markets | **Website:** [fiis.com.br/](https://fiis.com.br/) | **Docs:** [parse.bot/marketplace/06c86c2e-67ef-457b-951d-c4fb7ffb24bb/fiis-com-br-api](https://parse.bot/marketplace/06c86c2e-67ef-457b-951d-c4fb7ffb24bb/fiis-com-br-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-fiis-com-br-api-06c86c2e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_dividends

Get historical dividend records for a specific fund ticker. Returns all available dividend payment history including dates, yields, closing prices, and dividend values. Records are ordered most recent first.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | The fund ticker symbol (e.g. MXRF11, HGLG11, KNRI11) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiis-com-br-api-06c86c2e/get_dividends \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticker":"<string>"}'
```

### get_fund

Get detailed financial data and metrics for a specific fund ticker. Returns pricing, valuation ratios, 52-week range, dividend info, financial details, and administration data. The ticker must be a valid FII code (e.g. MXRF11, HGLG11).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | The fund ticker symbol (e.g. MXRF11, HGLG11, KNRI11) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiis-com-br-api-06c86c2e/get_fund \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ticker":"<string>"}'
```

### search_funds

List all investing funds (FIIs) available on fiis.com.br. Returns an array of fund tickers with names and detail page URLs. No filtering or pagination — the full catalogue is returned in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fiis-com-br-api-06c86c2e/search_funds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
