Discover/StatusInvest API
live

StatusInvest APIstatusinvest.com.br

Access Brazilian stock search, financial indicators, price history, dividends, and full stock listings from StatusInvest via a single REST API.

Endpoint health
verified 2d ago
search
get_details
get_history
get_dividends
list_stocks
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the StatusInvest API?

The StatusInvest API exposes 5 endpoints covering the full breadth of Brazilian equity data available on statusinvest.com.br — from ticker search and detailed indicators like P/L, ROE, and dividend yield to approximately 30 days of daily closing prices. The get_details endpoint returns a structured indicator object for any B3-listed ticker, while list_stocks delivers the complete universe of Brazilian equities with valuation metrics in one call.

Try it
Search query — a ticker symbol (e.g. PETR4) or company name (e.g. Petrobras).
api.parse.bot/scraper/e22d137f-9aa8-4df2-8485-91eeea290359/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e22d137f-9aa8-4df2-8485-91eeea290359/search?query=PETR4' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace statusinvest-com-br-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.statusinvest_api import StatusInvest, Stock, StockDetail, StockListing, DividendCalendar, DividendEvent, PriceHistory, StockNotFound

client = StatusInvest()

# Search for Petrobras stocks
for stock in client.stocks.search(query="PETR"):
    print(stock.code, stock.name, stock.price, stock.variation_up)

# Get detailed indicators for a specific ticker
detail = client.stockdetails.get(ticker="PETR4")
print(detail.ticker, detail.url, detail.summary.current_price, detail.summary.dividend_yield)

# Get price history for the stock
for history in detail.history():
    print(history.currency, history.symbol)
    for point in history.prices:
        print(point.date, point.price)

# List all stocks with financial metrics
for listing in client.stocklistings.list():
    print(listing.ticker, listing.companyname, listing.price, listing.roe, listing.valormercado)

# Get dividend calendar for a specific month
calendar = client.dividendcalendars.get(year=2025, month=6)
print(calendar.year, calendar.month)
for event in calendar.announced:
    print(event.code, event.company_name, event.type_desc, event.result_absolute_value, event.date_com)
All endpoints · 5 totalmissing one? ·

Search for stocks by ticker symbol or company name. Returns matching stocks and BDRs with current price and daily variation. Each result includes the ticker code, company name, current price (in BRL, comma-decimal formatted), daily variation percentage, and a relative URL path.

Input
ParamTypeDescription
queryrequiredstringSearch query — a ticker symbol (e.g. PETR4) or company name (e.g. Petrobras).
Response
{
  "type": "object",
  "fields": {
    "items": "array of matching stock objects, each containing code (ticker), name, price, variation, variationUp, type, and url"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 530,
          "url": "/acoes/petr4",
          "code": "PETR4",
          "name": "PETROBRAS",
          "type": 1,
          "price": "41,83",
          "parentId": 408,
          "variation": "1,830",
          "variationUp": true,
          "nameFormated": "PETR4 - PETROBRAS",
          "normalizedName": "petrobras"
        }
      ]
    },
    "status": "success"
  }
}

About the StatusInvest API

What the API Covers

This API targets Brazilian equities listed on B3, including stocks and BDRs. The search endpoint accepts a ticker symbol (e.g. PETR4) or company name (e.g. Petrobras) and returns an array of matching instruments, each with code, name, price, variation, and url. The get_details endpoint takes a single ticker parameter and returns an indicators object mapping named financial metrics — P/L, P/VP, ROE, DY, profit margins, and others — alongside a summary object with current price and related fields.

Price History and Dividends

The get_history endpoint returns recent daily closing prices in BRL for a given ticker, covering approximately the last 30 trading days. The response is structured as an array of currency objects, each containing currency metadata and a prices array of date/price pairs. The get_dividends endpoint queries dividend events by year and month (both optional, defaulting to the current UTC period) and returns two arrays: announced (upcoming dividend announcements) and payments (confirmed paid events).

Full Stock Universe

The list_stocks endpoint requires no parameters and returns the complete set of B3-listed stocks. Each object in the response includes companyid, companyname, ticker, price, and a wide set of financial metrics: dy, p_l, p_vp, roe, roa, liquidity measures, and market cap. This makes it suitable for screening the full Brazilian equity market without needing to enumerate tickers in advance.

Reliability & maintenanceVerified

The StatusInvest API is a managed, monitored endpoint for statusinvest.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when statusinvest.com.br changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official statusinvest.com.br API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screen all B3-listed stocks by P/L, P/VP, or ROE using list_stocks financial metric fields.
  • Build a dividend calendar by querying get_dividends month-by-month to track announced and paid events.
  • Power a ticker autocomplete feature with search using partial company names or ticker symbols.
  • Plot a 30-day price chart for any Brazilian stock using get_history date/price pairs.
  • Monitor current DY, margin, and valuation indicators for a watchlist of tickers via get_details.
  • Compare P/VP and ROE across the full stock universe to identify valuation outliers.
  • Aggregate dividend payment history for income-focused portfolio tracking.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does StatusInvest have an official developer API?+
StatusInvest does not publish a documented public developer API or offer API access to third-party developers on their website.
What does `get_details` return beyond the current price?+
It returns an indicators object mapping named financial ratios and metrics to their values — including P/L, P/VP, ROE, dividend yield, and profit margins — and a summary object containing the current price and closely related fields for the requested ticker.
How far back does `get_history` go for price data?+
The endpoint returns approximately the last 30 trading days of daily closing prices in BRL. Extended historical ranges beyond that window are not currently covered. You can fork the API on Parse and revise it to add a longer-range history endpoint if your use case requires multi-year price series.
Does the API cover FIIs (real estate investment trusts) or other Brazilian asset classes beyond stocks and BDRs?+
The documented endpoints cover Brazilian stocks and BDRs. FIIs, debentures, ETFs, and other asset classes listed on StatusInvest are not currently exposed. You can fork the API on Parse and revise it to add endpoints targeting those asset types.
Can I filter `list_stocks` results by sector or minimum liquidity?+
The list_stocks endpoint returns the full stock universe in a single unfiltered response — it has no built-in filter parameters. Filtering by sector, liquidity threshold, or any other criterion needs to be applied client-side on the returned array. You can fork the API on Parse and revise it to add server-side filtering logic.
Page content last updated . Spec covers 5 endpoints from statusinvest.com.br.
Related APIs in FinanceSee all →
investidor10.com.br API
Access comprehensive Brazilian stock and real estate investment fund data including listings, technical indicators, dividend history, and historical price quotes. Search and retrieve detailed information about individual assets to analyze their performance and financial metrics.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
infomoney.com.br API
Track Brazilian stocks, currencies, and cryptocurrencies with real-time quotes, historical OHLCV data, fundamentals, and dividends. Access intraday price movements, top B3 movers, exchange rates, and market news from InfoMoney.
data.anbima.com.br API
Access comprehensive Brazilian financial data including fund information, debenture details, historical performance metrics, and upcoming events from ANBIMA. Search and retrieve periodic data on investment funds and private securities to analyze financial instruments and track market calendars.
fiis.com.br API
Search and analyze Brazilian real estate investment funds (FIIs) with detailed financial metrics, performance data, and complete dividend history to make informed investment decisions. Access comprehensive fund information including key statistics and historical payouts all in one place.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.