infomoney.com.br APIinfomoney.com.br ↗
Access B3 stock quotes, historical OHLCV, intraday prices, fundamentals, dividends, currency rates, crypto, and news via the InfoMoney API.
curl -X GET 'https://api.parse.bot/scraper/197d4554-7009-4a1e-852e-90977cea7fc4/get_stock_last_15_days?ticker=VALE3' \ -H 'X-API-Key: $PARSE_API_KEY'
Get stock values for the last 15 business days at daily resolution. Returns an array of OHLCV records ordered by most recent first.
| Param | Type | Description |
|---|---|---|
| ticker | string | B3 stock ticker symbol (e.g. PETR4, VALE3) |
{
"type": "object",
"fields": {
"data": "array of daily OHLCV records with symbol, tradeDate, open, high, low, close, change, tradeVolume, financialVolume"
},
"sample": {
"data": [
{
"low": 44.36,
"high": 45.83,
"open": 45.77,
"close": 44.57,
"change": -2.43,
"symbol": "PETR4",
"exchange": "B3",
"change52w": 54.7,
"tradeDate": "2026-05-13T17:07:57",
"changeYear": 50.27,
"changeMonth": -9.67,
"tradeVolume": 92620,
"financialVolume": 2567984441
}
],
"status": "success"
}
}About the infomoney.com.br API
The InfoMoney API covers 10 endpoints for Brazilian financial market data from infomoney.com.br, including real-time B3 stock quotes, paginated historical OHLCV records, intraday minute-by-minute prices, fundamental indicators, and dividend history. The get_stock_fundamentals endpoint alone returns over a dozen metrics including EBITDA margin, net debt, and total equity. Currency and cryptocurrency rates against BRL are also available alongside market news.
Stock Quotes and Price History
The get_stock_quote endpoint returns the current intraday snapshot for any B3 ticker, including open, high, low, close, price, change, changeMonth, changeYear, change52w, avgPrice, and volume. For recent history without pagination, get_stock_last_15_days returns an array of daily OHLCV records for the last 15 business days ordered most-recent-first. For deeper history, get_stock_historical_data accepts page, page_size, and ticker and returns a result array plus a pageInfo object with a hasNextPage boolean to handle multi-page traversal.
Intraday and Fundamental Data
get_stock_intraday returns high-frequency price records via the intradayQuoteItems array. The interval parameter accepts 'OneDay' or 'FiveDays', and periodicity controls the candle frequency in minutes (1, 5, 15, or 60). For fundamentals, get_stock_fundamentals returns balance-sheet and income-statement metrics: netRevenue, netProfit, netMargin, ebitda, ebitdaMargin, totalAsset, grossDebt, netDebt, and totalEquity, among others — all tied to a specific ticker symbol.
Dividends, Movers, and Rates
get_stock_dividends accepts a months parameter to scope the lookback window and returns records with type, rate, yield, lastDatePriorToEx, and paymentDate — useful for reconstructing dividend yield timelines. get_b3_top_movers returns the 10 IBOV stocks with the highest or lowest daily change percentage depending on the order parameter ('Desc' for gainers, 'Asc' for losers). get_currency_rates returns bid and ask for major currencies against BRL; get_crypto_rates returns price and change for named cryptocurrencies such as Bitcoin and Ethereum.
News
get_stock_news queries InfoMoney's article catalog by ticker or keyword and returns up to 100 articles per call. Each record includes id, date, link, and nested title and excerpt objects with a rendered string — matching the WordPress REST API response shape used by InfoMoney's publishing platform.
- Build a B3 portfolio tracker that polls
get_stock_quotefor live prices and daily change percentages. - Backfill historical OHLCV data for Brazilian equities using
get_stock_historical_datawith pagination. - Screen IBOV stocks by momentum using
get_b3_top_moversto surface the day's top gainers and losers. - Display a dividend calendar for a watchlist by calling
get_stock_dividendswith a 12-month lookback. - Model BRL currency exposure in a multi-currency portfolio using
get_currency_ratesbid/ask data. - Aggregate fundamentals like EBITDA margin and net debt across tickers via
get_stock_fundamentalsfor comparative analysis. - Surface ticker-specific news headlines and excerpts in a research dashboard using
get_stock_news.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does InfoMoney offer an official public developer API?+
What does `get_stock_fundamentals` return and how current is it?+
netRevenue, netProfit, netMargin, ebitda, ebitdaMargin, totalAsset, grossDebt, netDebt, and totalEquity. The figures reflect what InfoMoney displays on the stock's fundamentals page, which is updated after quarterly earnings filings rather than in real time.Does the API cover stocks outside the IBOV index or non-B3 exchanges?+
How does pagination work for `get_stock_historical_data`?+
page and page_size as query parameters. Each response includes a pageInfo object with a hasNextPage boolean. Increment page and continue requesting until hasNextPage is false.