Cole no ChatGPT/Claude e peça para resumir/gerar SDK.
Maiores baixas
GET
/indexes/[indexSymbol]/lows
Retorna o ranking de empresas com as maiores baixas dentro de um índice.
As cotações usadas no cálculo seguem o padrão de 15 minutos de atraso, igual ao endpoint de cotações.
Parâmetros de requisição
| Parâmetro | Local | Descrição | Obrigatório |
|---|---|---|---|
[indexSymbol] | URL | Símbolo do índice. Ex.: IBOV, SMLL, IFIX. | Obrigatório |
limit | Query | Máximo de empresas no ranking. Padrão: 10. | Opcional |
Resposta
| Código | Descrição |
|---|---|
| 200 | Retorna o ranking de maiores baixas do índice. |
| 400 | Parâmetros ausentes ou inválidos. |
| 401 | Não autorizado. |
| 404 | Índice não encontrado ou sem dados. |
Formato da resposta
| Campo | Tipo | Descrição |
|---|---|---|
updated_at | string (ISO 8601) | Timestamp da atualização do ranking. |
ranking | array | Lista de empresas ordenada da maior para a menor baixa. |
Estrutura de ranking[]
| Campo | Tipo | Descrição |
|---|---|---|
position | number | Posição da empresa no ranking. |
ticker | string | Ticker do ativo. |
close_price | number | Preço de fechamento considerado na apuração. |
variation | number | Variação percentual (ex.: -0.0378 = -3,78%). |
variation_value | number | Variação em valor absoluto. |
highest_price | number | Maior preço do período. |
lowest_price | number | Menor preço do período. |
negotiated_quantity | number | Quantidade negociada do ativo. |
volume | number | Volume financeiro negociado. |
currency | string | Moeda dos valores retornados (ex.: BRL). |
Exemplo
{
"updated_at": "2026-06-24T14:48:22.000Z",
"ranking": [
{
"position": 1,
"ticker": "AZZA3",
"close_price": 19.34,
"variation": -0.0378,
"variation_value": -0.76,
"highest_price": 20.16,
"lowest_price": 19.29,
"negotiated_quantity": 1035000,
"volume": 20283890,
"currency": "BRL"
},
{
"position": 2,
"ticker": "PETR3",
"close_price": 42.87,
"variation": -0.0252,
"variation_value": -1.11,
"highest_price": 43.41,
"lowest_price": 42.37,
"negotiated_quantity": 3070300,
"volume": 131620943,
"currency": "BRL"
},
{
"position": 3,
"ticker": "PRIO3",
"close_price": 54.75,
"variation": -0.024,
"variation_value": -1.35,
"highest_price": 55.48,
"lowest_price": 54.25,
"negotiated_quantity": 3199500,
"volume": 174882389,
"currency": "BRL"
},
{
"position": 4,
"ticker": "PETR4",
"close_price": 38.57,
"variation": -0.019299999999999998,
"variation_value": -0.76,
"highest_price": 38.98,
"lowest_price": 38.13,
"negotiated_quantity": 15638100,
"volume": 601017882,
"currency": "BRL"
},
{
"position": 5,
"ticker": "VAMO3",
"close_price": 2.76,
"variation": -0.0177,
"variation_value": -0.05,
"highest_price": 2.81,
"lowest_price": 2.74,
"negotiated_quantity": 3795100,
"volume": 10508135,
"currency": "BRL"
},
{
"position": 6,
"ticker": "VALE3",
"close_price": 78.04,
"variation": -0.0168,
"variation_value": -1.34,
"highest_price": 78.86,
"lowest_price": 77.7,
"negotiated_quantity": 6327000,
"volume": 494503167,
"currency": "BRL"
},
{
"position": 7,
"ticker": "BRAP4",
"close_price": 22.24,
"variation": -0.0167,
"variation_value": -0.38,
"highest_price": 22.45,
"lowest_price": 22.13,
"negotiated_quantity": 374500,
"volume": 8319298,
"currency": "BRL"
},
{
"position": 8,
"ticker": "MBRF3",
"close_price": 16.52,
"variation": -0.0166,
"variation_value": -0.28,
"highest_price": 16.99,
"lowest_price": 16.32,
"negotiated_quantity": 2528500,
"volume": 42262916,
"currency": "BRL"
},
{
"position": 9,
"ticker": "CSNA3",
"close_price": 5.19,
"variation": -0.0151,
"variation_value": -0.08,
"highest_price": 5.26,
"lowest_price": 5.14,
"negotiated_quantity": 5667700,
"volume": 29433879,
"currency": "BRL"
},
{
"position": 10,
"ticker": "CSMG3",
"close_price": 57.69,
"variation": -0.0143,
"variation_value": -0.84,
"highest_price": 58.56,
"lowest_price": 57.54,
"negotiated_quantity": 973300,
"volume": 56292480,
"currency": "BRL"
}
]
}