# Balanço Patrimonial

> Consulte o balanço patrimonial de ações e outros ativos listados na B3, com dados anuais e trimestrais.

Entenda a saúde financeira de uma empresa em um único endpoint. O balanço patrimonial é como uma fotografia do patrimônio de uma companhia em uma data específica — o que ela possui (ativos), o que ela deve (passivos) e o que sobra para os acionistas (patrimônio líquido).

<callout color="neutral" icon="tabler:key" to="/docs/guide/key">

Para acessar os dados da API é necessário utilizar uma chave de integração e um plano compatível.

</callout>

---

## O que é o Balanço Patrimonial?

O balanço patrimonial responde a uma pergunta fundamental: **qual é a situação financeira desta empresa hoje?**

Ele é dividido em três grandes blocos:

<table>
<thead>
  <tr>
    <th>
      Bloco
    </th>
    
    <th>
      O que representa
    </th>
    
    <th>
      Exemplo
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <strong>
        Ativos
      </strong>
    </td>
    
    <td>
      Tudo que a empresa possui — dinheiro em caixa, imóveis, máquinas, direitos a receber.
    </td>
    
    <td>
      Caixa, estoques, imobilizado
    </td>
  </tr>
  
  <tr>
    <td>
      <strong>
        Passivos
      </strong>
    </td>
    
    <td>
      Tudo que a empresa deve — empréstimos, fornecedores, impostos.
    </td>
    
    <td>
      Dívidas de curto e longo prazo
    </td>
  </tr>
  
  <tr>
    <td>
      <strong>
        Patrimônio Líquido
      </strong>
    </td>
    
    <td>
      O que sobra para os acionistas após subtrair os passivos dos ativos.
    </td>
    
    <td>
      Capital social, reservas de lucros
    </td>
  </tr>
</tbody>
</table>

<callout color="info" icon="tabler:info-circle">

Os dados são consolidados, incluíndo a empresa e suas subsidiárias como um grupo econômico único.

</callout>

---

## Períodos

Você pode consultar dados anuais ou trimestrais. Os nomes de campo `period_type` e `fiscal_period` indicam o tipo de período:

<table>
<thead>
  <tr>
    <th>
      <code>
        period
      </code>
    </th>
    
    <th>
      Descrição
    </th>
    
    <th>
      <code>
        fiscal_period
      </code>
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        annual
      </code>
      
       (padrão)
    </td>
    
    <td>
      Exercícios anuais completos, em ordem decrescente.
    </td>
    
    <td>
      <code>
        FY
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        quarterly
      </code>
    </td>
    
    <td>
      Trimestres, em ordem decrescente.
    </td>
    
    <td>
      <code>
        Q1
      </code>
      
      , <code>
        Q2
      </code>
      
      , <code>
        Q3
      </code>
      
      , <code>
        Q4
      </code>
    </td>
  </tr>
</tbody>
</table>

---

## Requisição

Informe o ticker no formato `{fonte}:{símbolo}`.

<endpoint endpoint="/v2/finance/balance-sheets?tickers=B3:PETR4">



</endpoint>

<request-example endpoint="/v2/finance/balance-sheets?tickers=B3:PETR4">



</request-example>

<stock-search>



</stock-search>

### Parâmetros

<field-group>
<field name="tickers" type="string" :required="true">

Ticker do ativo no formato `{fonte}:{símbolo}`. Para múltiplos ativos, separe por vírgula: `B3:PETR4,B3:VALE3`.

</field>

<field name="period" type="string">

Tipo de período fiscal: `annual` (padrão) ou `quarterly`.

</field>

<field name="start_date" type="string">

Data inicial para filtrar os dados (`yyyy-mm-dd`).

</field>

<field name="end_date" type="string">

Data final para filtrar os dados (`yyyy-mm-dd`).

</field>

<field name="days_ago" type="number">

Número de dias atrás a partir de hoje. Use `0` para dados do dia atual.

</field>
</field-group>

---

## Resposta

<response-json endpoint="/v2/finance/balance-sheets?tickers=B3:PETR4">



</response-json>

### Campos

Os dados de cada ativo retornam no array `results`:

#### Ativo

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
    
    <th>
      Exemplo
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        ticker
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Ticker completo no formato <code>
        {fonte}:{símbolo}
      </code>
      
      .
    </td>
    
    <td>
      B3:PETR4
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        unit
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Unidade dos valores (<code>
        currency
      </code>
      
       para moeda).
    </td>
    
    <td>
      currency
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        currency
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Moeda dos valores.
    </td>
    
    <td>
      BRL
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        symbol
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Código de negociação do ativo.
    </td>
    
    <td>
      PETR4
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        name
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Nome simplificado da empresa.
    </td>
    
    <td>
      Petrobras
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        full_name
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Razão social completa da empresa.
    </td>
    
    <td>
      Petróleo Brasileiro S.A.
    </td>
  </tr>
</tbody>
</table>

#### Período

Cada item do array `statements` representa o balanço em uma data-base:

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
    
    <th>
      Exemplo
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        period_type
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Tipo do período: <code>
        annual
      </code>
      
       ou <code>
        quarterly
      </code>
      
      .
    </td>
    
    <td>
      annual
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        end_date
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Data-base do balanço (ponto no tempo).
    </td>
    
    <td>
      2024-12-31
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        fiscal_year
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ano fiscal.
    </td>
    
    <td>
      2024
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        fiscal_period
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Período fiscal: <code>
        FY
      </code>
      
       (anual) ou <code>
        Q1
      </code>
      
      –<code>
        Q4
      </code>
      
       (trimestral).
    </td>
    
    <td>
      FY
    </td>
  </tr>
</tbody>
</table>

#### Assets (Ativo)

O objeto `assets` contém os bens e direitos da empresa:

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        total
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativo total.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        current_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativo circulante — bens e direitos realizáveis em até 12 meses.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        cash_and_equivalents
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Caixa e equivalentes de caixa.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        short_term_investments
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Aplicações financeiras de curto prazo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        accounts_receivable
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Contas a receber de clientes.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        inventory
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Estoques de matéria-prima, produtos em elaboração e acabados.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        biological_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativos biológicos circulantes (ex.: rebanho, plantações).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        taxes_recoverable
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Tributos a recuperar.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        prepaid_expenses
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Despesas antecipadas.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        other_current_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Outros ativos circulantes.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativo não circulante — bens e direitos realizáveis após 12 meses.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_receivables
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Realizável a longo prazo — total do grupo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_financial_investments
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Aplicações financeiras de longo prazo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        related_party_receivables
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Créditos com partes relacionadas (controladas e coligadas).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_trade_receivables
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Contas a receber de longo prazo oriundas das operações.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        deferred_tax_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Tributos diferidos ativos.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        other_non_current_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Outros ativos não circulantes.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        equity_method_investments
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Participações avaliadas pelo método da equivalência patrimonial.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        property_plant_and_equipment
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativo imobilizado — máquinas, imóveis, veículos e equipamentos.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        right_of_use_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativos de direito de uso (arrendamentos e aluguéis capitalizados).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        goodwill
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ágio por expectativa de rentabilidade futura (goodwill).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        intangible_assets
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ativo intangível — marcas, patentes, software e licenças.
    </td>
  </tr>
</tbody>
</table>

<callout color="warning" icon="tabler:alert-triangle">

Os campos `right_of_use_assets` e `goodwill` podem retornar `null` quando não identificados com segurança para a empresa consultada. Quando `goodwill` for `null`, seu valor pode estar incluído em `intangible_assets`.

</callout>

#### Liabilities (Passivo)

O objeto `liabilities` contém as obrigações da empresa:

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        current_liabilities
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Passivo circulante — obrigações com vencimento em até 12 meses.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        employee_benefits_payable
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Obrigações sociais e trabalhistas (salários, férias, encargos).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        accounts_payable
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Fornecedores.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        taxes_payable
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Obrigações fiscais.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        short_term_debt
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Empréstimos e financiamentos de curto prazo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        other_current_liabilities
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Outras obrigações circulantes.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        current_provisions
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Provisões de curto prazo (contingências, garantias).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_liabilities
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Passivo não circulante — obrigações com vencimento após 12 meses.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        long_term_debt
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Empréstimos e financiamentos de longo prazo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        other_non_current_liabilities
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Outras obrigações de longo prazo.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        deferred_tax_liabilities
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Tributos diferidos passivos.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_current_provisions
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Provisões de longo prazo.
    </td>
  </tr>
</tbody>
</table>

#### Equity (Patrimônio Líquido)

O objeto `equity` representa o valor residual dos ativos após deduzir os passivos:

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        total
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Patrimônio líquido consolidado.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        share_capital
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Capital social realizado.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        additional_paid_in_capital
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Reservas de capital (inclui ágio na emissão de ações e ações em tesouraria).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        revaluation_surplus
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Reservas de reavaliação.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        legal_and_statutory_reserves
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Reservas de lucros (legal, estatutária, retenção de lucros e outras).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        retained_earnings
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Lucros ou prejuízos acumulados.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        accumulated_oci
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Total dos outros resultados abrangentes acumulados (OCI).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        valuation_adjustments
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ajustes de avaliação patrimonial (variações de fair value).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        translation_adjustments
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Ajustes acumulados de conversão cambial de subsidiárias no exterior.
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        other_accumulated_oci
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Outros resultados abrangentes (ajustes atuariais e demais itens).
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        non_controlling_interest
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          number
        </span>
      </code>
    </td>
    
    <td>
      Participação dos acionistas não controladores.
    </td>
  </tr>
</tbody>
</table>

<callout color="info" icon="tabler:info-circle">

O campo `accumulated_oci` é a soma de `valuation_adjustments`, `translation_adjustments` e `other_accumulated_oci`.

</callout>

#### Fonte

O objeto `source` contém informações sobre a origem dos dados:

<table>
<thead>
  <tr>
    <th>
      Campo
    </th>
    
    <th>
      Tipo
    </th>
    
    <th>
      Descrição
    </th>
    
    <th>
      Exemplo
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <code>
        source.symbol
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Código da fonte.
    </td>
    
    <td>
      CVM
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        source.name
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Nome da fonte.
    </td>
    
    <td>
      Comissão de Valores Mobiliários
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        source.full_name
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Nome completo da fonte.
    </td>
    
    <td>
      Comissão de Valores Mobiliários
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        source.url
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Site oficial.
    </td>
    
    <td>
      <a href="https://www.cvm.gov.br/" rel="nofollow">
        https://www.cvm.gov.br/
      </a>
    </td>
  </tr>
  
  <tr>
    <td>
      <code>
        source.location.timezone
      </code>
    </td>
    
    <td>
      <code className="language-ts-type shiki shiki-themes one-light one-dark-pro one-dark-pro" language="ts-type" style="">
        <span class="s3iYH">
          string
        </span>
      </code>
    </td>
    
    <td>
      Fuso horário.
    </td>
    
    <td>
      America/Sao_Paulo
    </td>
  </tr>
</tbody>
</table>
