Overview
Banco do Brasil provides a suite of financial APIs covering transactions, payments, PIX transfers, and account data for Brazil's largest public bank. It uses OAuth 2.0 for authentication and follows Open Banking standards. This API is best suited for developers building fintech applications targeting the Brazilian market.
Beginner Tip
You will need to register as a developer on developers.bb.com.br and go through an approval process before getting sandbox credentials. Start in the sandbox environment — it mirrors production without using real money.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"status": "success",
"data": {
"result": "Data from Banco do Brasil",
"description": "All Banco do Brasil financial transaction APIs",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
access_token OAuth 2.0 bearer token to use in subsequent API requests token_type Token type, always Bearer for this API expires_in Token validity duration in seconds from the time of issuance scope Space-separated list of permissions granted to this token Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://oauth.bb.com.br/oauth/token";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Similar APIs
View All →Front Accounting APIs
Front Accounting APIs provide programmatic access to an open-source accounting system designed for small businesses.
Tradier
Tradier is a US brokerage API that provides access to equity and options market data including delayed quotes, intraday prices, and historical data going back years.
YNAB
The YNAB (You Need A Budget) API lets you programmatically read and write data from a user's YNAB budget, including accounts, transactions, and category balances.
Zoho Books
The Zoho Books API gives you programmatic access to your Zoho Books accounting data, letting you manage invoices, contacts, expenses, and payments from your own apps.
Aletheia
Aletheia provides financial data including insider trading filings, earnings call transcripts, and financial statements for US-listed companies.