π Bloquo API: Accounting Endpoints
The Accounting section endpoints of the Bloquo API allow you to retrieve financial data of the authenticated customer, such as:
Customer registration details
Accounts (FIAT and CRYPTO)
Current balances
Financial transactions
Deposit orders
GET /api/v1/customers/me
Returns the registration details of the organization.
GET /api/v1/customer/account
Lists all customer accounts, including type, currency, status, and bank information.
GET /api/v1/customer/account/balances?includes=account
Returns current balance information across all accounts, including currency, account type, and overdraft limits.
π Click here for a full request and response example
GET /api/v1/customer/transaction
Retrieves the transaction history with filters like amount, currency, type (Credit/Debit), and account.
amount: [optional] transaction amount (double)
currency: [optional] currency (string, e.g., BRL, USDT)
type: [optional] transaction type (Credit or Debit)
orderType: [optional] order type (e.g., TRADE)
accountId: [optional] origin/destination account
π Click here for a full request and response example
What types of accounts can be listed?
FIAT and CRYPTO accounts, with bank details or wallet addresses.
How do I get the balance of a specific account?
Use the balances endpoint with the includes=account parameter and filter by the desired accountId.
Can I filter transactions by type?
Yes, using the type parameter with values Credit or Debit.
How does authentication work?
All endpoints require a JWT (Bearer Token) and the customerId header.
Can I retrieve my company details via API?
Yes, the /customers/me endpoint returns name, taxId (CNPJ), activation status, and configuration settings.
Can I check the overdraft limit for an account?
Yes, the maxAllowedDebt field provides this information for each account.
Always send the customerId header with the organization's ID
Use up-to-date tokens to avoid authentication errors (401)
Check overdraft limits (maxAllowedDebt) before making financial operations
If you have further questions, contact our support team or check the full API documentation.