# Indicadores de Fundos
URL: /docs/fundos/indicadores.mdx

Consulte preço, valor patrimonial por cota, patrimônio, ativos e cotistas.

***

title: Indicadores de Fundos
description: Consulte preço, valor patrimonial por cota, patrimônio, ativos e cotistas.
full: true
keywords: brapi, fundos, indicadores, valor patrimonial, preço, JURO11
openGraph:
title: Indicadores de Fundos
description: Indicadores atuais para FIIs, FIAGROs e FI-Infra/FIFs.
type: website
locale: pt\_BR
lastUpdated: '2026-06-14T00:00:00.000Z'
lang: pt-BR
\_openapi:
method: GET
route: /api/v2/funds/indicators
-------------------------------

Retorna indicadores atuais como preço de mercado, valor patrimonial por cota,
relação entre preço e valor patrimonial, patrimônio, ativos e cotistas. O preço
de mercado e o valor patrimonial por cota (`navPerShare`) são campos separados.





## Swagger Documentation

# brapi - API do Mercado Financeiro Brasileiro - /api/v2/funds/indicators

Single endpoint documentation for /api/v2/funds/indicators

## Base URLs

- `https://brapi.dev` - Servidor principal da API brapi
- `http://localhost:3001` - Servidor local para desenvolvimento

## GET /api/v2/funds/indicators

**Summary:** Indicadores atuais de fundos

Retorna indicadores atuais para fundos específicos. Use `/api/v2/funds/list` para descobrir fundos antes de consultar indicadores.

**Tags:** Fundos

### Parameters

- **symbols** (query)
- **cnpjs** (query)
- **assetType** (query)

### Responses

#### 200

Indicadores

**Example Response:**

```json
{
  "funds": [
    {
      "symbol": "JURO11",
      "cnpj": "42730834000100",
      "name": "SPARTA INFRA",
      "assetType": "fiinfra",
      "asOfDate": "2026-06-18T00:00:00.000Z",
      "price": 96.99,
      "navPerShare": 99.19945,
      "priceToNav": 0.9777272,
      "equity": 2040699000,
      "totalAssets": 2041704100,
      "totalInvestors": 92710,
      "dailyApplications": 0,
      "dailyRedemptions": 0,
      "sharesOutstanding": null,
      "monthlyReturn": null,
      "patrimonialMonthlyReturn": null,
      "dividendYieldMonthly": null
    }
  ],
  "requestedAt": "2026-06-22T02:10:56.524Z",
  "took": 189
}
```

#### 400

Requisição inválida

#### 401

Não autorizado

#### 403

Acesso negado

#### 500

Erro interno do servidor

## Schemas

The following schemas are used by this endpoint:

### ErrorResponse

Erro interno do servidor

**Properties:**

- **error** (boolean) - Options: `true` *(required)*

- **message** (string) *(required)*

- **code** (string)


### FundIndicator

**Properties:**

- **symbol** (string) *(nullable)* *(required)*

- **cnpj** (string) *(required)*

- **name** (string) *(nullable)* *(required)*

- **assetType** (string) - Options: `fii`, `fiagro`, `fiinfra`, `fif`, `fidc`, `fip`, `etf`, `other` *(required)*

- **price** (number) *(nullable)* *(required)*

- **navPerShare** (number) *(nullable)* *(required)*

- **priceToNav** (number) *(nullable)* *(required)*

- **equity** (number) *(nullable)* *(required)*

- **totalAssets** (number) *(nullable)* *(required)*

- **totalInvestors** (number) *(nullable)* *(required)*

- **asOfDate** (string) *(nullable)* *(required)*

- **dailyApplications** (number) *(nullable)* *(required)*

- **dailyRedemptions** (number) *(nullable)* *(required)*

- **sharesOutstanding** (number) *(nullable)* *(required)*

- **monthlyReturn** (number) *(nullable)* *(required)*

- **patrimonialMonthlyReturn** (number) *(nullable)* *(required)*

- **dividendYieldMonthly** (number) *(nullable)* *(required)*


