# Relatórios FIDC
URL: /docs/fundos/fidc-relatorios.mdx

Relatórios mensais FIDC CVM por CNPJ e símbolo quando houver mapeamento.

***

title: Relatórios FIDC
description: Relatórios mensais FIDC CVM por CNPJ e símbolo quando houver mapeamento.
full: true
keywords: brapi, FIDC, relatórios, CVM, crédito estruturado
openGraph:
title: Relatórios FIDC
description: Dados mensais FIDC com ativos, carteira, PL e administrador.
type: website
locale: pt\_BR
lastUpdated: '2026-06-14T00:00:00.000Z'
lang: pt-BR
\_openapi:
method: GET
route: /api/v2/funds/fidc/reports
---------------------------------

Use `cnpjs` como identificador principal para FIDCs. `symbols` também funciona
quando o fundo tem ticker mapeado na base da brapi.





## Swagger Documentation

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

Single endpoint documentation for /api/v2/funds/fidc/reports

## Base URLs

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

## GET /api/v2/funds/fidc/reports

**Summary:** Relatórios mensais FIDC

Retorna relatórios mensais FIDC com ativos, carteira, patrimônio líquido, classe e condomínio.

**Tags:** Fundos

### Parameters

- **symbols** (query)
- **cnpjs** (query)
- **startDate** (query)
- **endDate** (query)
- **page** (query)
- **limit** (query)
- **sortBy** (query)
- **sortOrder** (query)

### Responses

#### 200

Relatórios FIDC

**Example Response:**

```json
{
  "reports": [
    {
      "symbol": null,
      "cnpj": "05754060000113",
      "name": "CATERPILLAR FUNDO DE INVESTIMENTO EM DIREITOS CREDITÓRIOS DO SEGMENTO INDUSTRIAL II - RESP LIMITADA",
      "referenceDate": "2026-05-31T00:00:00.000Z",
      "administratorName": "BEM - DISTRIBUIDORA DE TITULOS E VALORES MOBILIARIOS LTDA.",
      "class": null,
      "condominiumType": "ABERTO",
      "assets": 1642889200,
      "portfolioValue": 1642755000,
      "netEquity": 1642653000,
      "averageNetEquity": 1620125200,
      "liabilities": 236119.5
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "totalItems": 5,
    "totalPages": 1,
    "hasNextPage": false
  },
  "requestedAt": "2026-06-22T02:10:57.882Z",
  "took": 292
}
```

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


### FidcReport

**Properties:**

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

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

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

- **referenceDate** (string) *(required)*

- **administratorName** (string) *(nullable)* *(required)*

- **class** (string) *(nullable)* *(required)*

- **condominiumType** (string) *(nullable)* *(required)*

- **assets** (number) *(nullable)* *(required)*

- **portfolioValue** (number) *(nullable)* *(required)*

- **netEquity** (number) *(nullable)* *(required)*

- **averageNetEquity** (number) *(nullable)* *(required)*

- **liabilities** (number) *(nullable)* *(required)*


### FundPaginationMeta

**Properties:**

- **page** (number) *(required)*

- **limit** (number) *(required)*

- **totalItems** (number) *(required)*

- **totalPages** (number) *(required)*

- **hasNextPage** (boolean) *(required)*


