# Listagem de Fundos
URL: /docs/fundos/listagem.mdx

Liste fundos por símbolo, CNPJ, busca textual, tipo e status.

***

title: Listagem de Fundos
description: Liste fundos por símbolo, CNPJ, busca textual, tipo e status.
full: true
keywords: brapi, fundos, listagem, FIAGRO, FI-Infra, FIDC, FIP
openGraph:
title: Listagem de Fundos
description: Descubra FIIs, FIAGROs, FI-Infra/FIFs, FIDCs e FIPs.
type: website
locale: pt\_BR
lastUpdated: '2026-06-14T00:00:00.000Z'
lang: pt-BR
\_openapi:
method: GET
route: /api/v2/funds/list
-------------------------

import { Callout } from 'fumadocs-ui/components/callout';

Lista fundos brasileiros com `symbol`, `cnpj`, `assetType`, nomes,
classificações CVM/B3, administradores e indicadores atuais.

<Callout type="info">
  Use `/api/v2/funds/list?symbols=JURO11` para consultar um fundo listado,
  `/api/v2/funds/list?assetType=fiagro` para filtrar FIAGROs e `cnpjs` para
  fundos sem ticker B3.
</Callout>





## Swagger Documentation

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

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

## Base URLs

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

## GET /api/v2/funds/list

**Summary:** Lista fundos brasileiros por símbolo, CNPJ, busca e tipo

Descobre FIIs, FIAGROs, FI-Infra/FIFs, FIDCs, FIPs e outros fundos a partir da identidade canônica de fundos.

**Tags:** Fundos

### Parameters

- **symbols** (query)
- **cnpjs** (query)
- **page** (query)
- **limit** (query)
- **sortBy** (query)
- **sortOrder** (query)
- **search** (query)
- **assetType** (query)
- **status** (query)

### Responses

#### 200

Fundos encontrados

**Example Response:**

```json
{
  "funds": [
    {
      "symbol": "JURO11",
      "cnpj": "42730834000100",
      "formattedCnpj": "42.730.834/0001-00",
      "name": "SPARTA INFRA",
      "legalName": "SPARTA INFRA FIC FI INFRA RENDA FIXA CP",
      "assetType": "fiinfra",
      "cvmClassType": null,
      "cvmClassification": null,
      "anbimaClassification": null,
      "b3Classification": "Financeiro/Fundos/FI-INFRA",
      "isin": null,
      "administratorName": null,
      "administratorCnpj": null,
      "managerName": null,
      "managerCnpj": null,
      "status": null,
      "price": 96.99,
      "navPerShare": 99.19945,
      "priceToNav": 0.9777272,
      "equity": 2040699000,
      "totalAssets": 2041704100,
      "totalInvestors": 92710,
      "updatedAt": "2026-06-21T21:06:37.434Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "totalItems": 1,
    "totalPages": 1,
    "hasNextPage": false
  },
  "requestedAt": "2026-06-22T02:10:56.319Z",
  "took": 902
}
```

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


### FundListItem

**Properties:**

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

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

- **formattedCnpj** (string) *(nullable)* *(required)*

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

- **legalName** (string) *(nullable)* *(required)*

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

- **cvmClassType** (string) *(nullable)* *(required)*

- **cvmClassification** (string) *(nullable)* *(required)*

- **anbimaClassification** (string) *(nullable)* *(required)*

- **b3Classification** (string) *(nullable)* *(required)*

- **isin** (string) *(nullable)* *(required)*

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

- **administratorCnpj** (string) *(nullable)* *(required)*

- **managerName** (string) *(nullable)* *(required)*

- **managerCnpj** (string) *(nullable)* *(required)*

- **status** (string) *(nullable)* *(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)*

- **updatedAt** (string) *(nullable)* *(required)*


### FundPaginationMeta

**Properties:**

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

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

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

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

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


