data.anbima.com.br APIdata.anbima.com.br ↗
Access Brazilian investment fund data, debenture details, private securities event calendars, and ANBIMA datasets via a structured REST API.
curl -X GET 'https://api.parse.bot/scraper/ba829820-1cc1-4b84-afce-f3fff8bf1686/get_titulos_privados_agenda_eventos?page=0&size=2' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the private securities events calendar. Returns paginated events including interest payments, amortizations, and other corporate actions on private securities.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (0-based) |
| size | integer | Results per page |
{
"type": "object",
"fields": {
"data": "object containing content (array of event records with evento, taxa, valor, serie, data_evento, data_liquidacao, status), number, size, total_elements, and total_pages"
},
"sample": {
"data": {
"size": 2,
"number": 0,
"content": [
{
"taxa": "5,3621 %",
"serie": {
"tipo": "CRI",
"codigo_b3": "21D0694886"
},
"valor": "R$ 26,57977244",
"evento": "Pagamento de juros",
"status": {
"status": "Liquidado"
},
"data_evento": "15/10/2021",
"data_liquidacao": "15/10/2021"
}
],
"total_pages": 83251,
"total_elements": 166502
},
"status": "success"
}
}About the data.anbima.com.br API
The ANBIMA Data API provides 6 endpoints covering Brazilian investment funds, debentures, and private securities events sourced from data.anbima.com.br. Use search_funds to look up funds by name or CNPJ and retrieve share value history, or use get_debenture_details to pull issuer information, remuneration structure, pricing history, and maturity dates for any specific B3-coded debenture.
Fund Data
search_funds accepts a query parameter (fund name or CNPJ) and returns paginated results including administrative details, class information, and performance metrics. get_fund_periodic_data takes the same query and returns a time series for the first matching fund — daily records with date, value (share price), valor_patrimonio_liquido (net asset value), and investor count. Both endpoints support page and size parameters for pagination.
Debenture Data
search_debentures accepts an optional query string (B3 code or issuer name); omitting it returns all debentures in paginated form. For a specific instrument, get_debenture_details takes a B3 code (e.g. AALM12) and returns codigo_b3, isin, tipo, remuneracao, data_vencimento, setor, full emissao metadata, and pu_indicativo (indicative pricing history). This is the endpoint to use when you need full terms and pricing data for a specific debenture.
Private Securities Events Calendar
get_titulos_privados_agenda_eventos returns a paginated calendar of upcoming and past corporate actions on private securities. Each event record includes evento (event type such as interest payment or amortization), taxa, valor, serie, data_evento, data_liquidacao, and status. This is useful for tracking cash-flow events across a portfolio of private credit instruments.
Available Datasets
get_datasets_list requires no parameters and returns the full catalog of datasets available on the ANBIMA Data platform. Each entry includes id, titulo, slug, descricao, categoria_ativo, tipo_mercado, and availability flags, letting you programmatically discover what data is published.
- Track daily net asset value and investor count for Brazilian investment funds using
get_fund_periodic_data - Build a private credit calendar by pulling amortization and interest payment events from
get_titulos_privados_agenda_eventos - Look up full debenture terms — remuneration, maturity, ISIN, and indicative pricing — by B3 code using
get_debenture_details - Screen debentures by issuer sector using the
setorfield returned in debenture detail responses - Enumerate all ANBIMA-published datasets programmatically to identify available data categories via
get_datasets_list - Search and compare investment funds by CNPJ across administrative and performance fields using
search_funds
| 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 ANBIMA offer an official developer API?+
What does `get_debenture_details` return beyond what `search_debentures` provides?+
search_debentures returns summary records suitable for listing — names, codes, and high-level remuneration info. get_debenture_details returns the full record for one instrument by its B3 code: isin, tipo, setor, complete emissao (issuer and emission details), and pu_indicativo (a history of indicative prices), none of which appear in the search results.Does `get_fund_periodic_data` return data for all matching funds or just one?+
query string. If your query matches multiple funds, only the first result is used. Use search_funds first to confirm the exact fund name or CNPJ, then pass that precise value to get_fund_periodic_data to ensure you retrieve the intended fund.Does the API cover real-time pricing or intraday data?+
get_fund_periodic_data returns daily records, and get_debenture_details provides indicative pricing history rather than live quotes. Intraday or real-time price feeds are not part of the current endpoint set. You can fork the API on Parse and revise it to add an endpoint targeting a real-time pricing source if that coverage is needed.