For Agents
Issue Brazilian boletos bancários with Pix, modify or cancel them, run batch issuance, and exchange CNAB remittance and return files through Boleto Cloud.
Get started with Boleto Cloud API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"issue a boleto bancário"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Boleto Cloud API API.
Issue a registered boleto bancário with optional Pix QR code for a Brazilian payer
Modify the due date or grant a discount on a previously issued boleto
Write off (baixa) a boleto so it is removed from the bank's cobrança register
Issue a carnê — a single document with multiple installment boletos for subscription billing
GET STARTED
Use for: I need to issue a boleto bancário for 250 BRL, Generate a boleto with a Pix QR code attached, Change the due date of an outstanding boleto, Cancel a boleto that the customer no longer needs to pay
Not supported: Does not handle credit card processing, Pix without an underlying boleto, or international payments — use for Brazilian boleto issuance and lifecycle management only.
Jentic publishes the only available OpenAPI document for Boleto Cloud API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Boleto Cloud API, keeping it validated and agent-ready. Boleto Cloud is a Brazilian payment service that issues boletos bancários with optional Pix QR codes, registers them automatically with the major Brazilian banks, and exposes the full lifecycle through a REST API. Use it to create boletos individually or in batch, modify the due date, grant a discount, write off a boleto, and exchange CNAB remittance and return files. The API also supports carnês (boletos with multiple installments) for subscription-style billing.
Submit boletos in batch to register many at once instead of one call per slip
Send CNAB remittance files and download CNAB return files for bank reconciliation
Patterns agents use Boleto Cloud API API for, with concrete tasks.
★ Subscription Billing with Carnê
Issue a single carnê with twelve installment boletos when a customer signs up for an annual subscription, so they receive one document and twelve monthly payment slips. POST /carnes creates the full series in one call. Brazilian SaaS and education businesses use this to bill annual customers without storing card data.
POST /carnes for customer CPF 12345678901 with 12 installments of 99 BRL starting 2026-07-15
Bulk Boleto Issuance for Monthly Billing Cycles
Submit thousands of boletos in a single batch on the day of the month when invoices go out, instead of making one HTTP call per customer. POST /batch/boletos accepts the full set, validates each, and registers them with the chosen bank. Removes the latency and error-handling cost of high-volume billing runs.
POST /batch/boletos with the JSON array of 500 customer slips for the June billing run
Lifecycle Management of Outstanding Boletos
Adjust the due date when a customer asks for a few extra days, grant a discount for early payment, or write off a boleto that was issued in error. PUT /boletos/{token}/vencimento, /boletos/{token}/abatimento, and /boletos/{token}/baixa cover these mid-lifecycle changes. Saves the bookkeeping team from contacting the bank directly for each adjustment.
PUT /boletos/abc123/vencimento with new due_date 2026-07-30
AI Agent Brazilian Receivables
An AI agent uses Jentic to discover Boleto Cloud operations, issues boletos for Brazilian customers, and writes them off when paid through CNAB return processing. Credentials live in the Jentic vault so the basic-auth API key never enters the prompt. Replaces multi-day bank-by-bank cobrança integration with a single search-load-execute cycle.
Search Jentic for 'issue a boleto bancário', load the operation, and execute it for a 350 BRL invoice due in 14 days
12 endpoints — jentic publishes the only available openapi specification for boleto cloud api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/boletos
Create a boleto
/boletos/{token}
Retrieve the original copy of a boleto
/boletos/{token}/vencimento
Modify the due date
/boletos/{token}/baixa
Write off (cancel) a boleto
/carnes
Create a carnê with multiple installments
/batch/boletos
Create boletos in batch
/arquivos/cnab/remessas
Submit a CNAB remittance file
/arquivos/cnab/retornos
Submit CNAB return files for reconciliation
/boletos
Create a boleto
/boletos/{token}
Retrieve the original copy of a boleto
/boletos/{token}/vencimento
Modify the due date
/boletos/{token}/baixa
Write off (cancel) a boleto
/carnes
Create a carnê with multiple installments
Three things that make agents converge on Jentic-routed access.
Credential isolation
Boleto Cloud uses HTTP Basic auth with an API key. Jentic stores the key encrypted in the vault (MAXsystem) and constructs the Basic header at execution time, so the raw key never enters the agent's prompt context.
Intent-based discovery
Agents search Jentic with intents like 'issue a boleto' or 'create a carnê' and Jentic returns the matching Boleto Cloud operation with its input schema, removing the need to read Portuguese-language docs.
Time to first call
Direct Boleto Cloud integration: 2-3 days to handle Basic auth, idempotent issuance, and CNAB file plumbing. Through Jentic: under an hour with search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
Bokio API
Bokio is Swedish accounting; Boleto Cloud is Brazilian receivables.
Choose Boleto Cloud for Brazilian receivables; choose Bokio when the company books in Sweden.
Bond API
Bond issues card programs while Boleto Cloud issues bank slips for receivables.
Use both when a Brazilian fintech needs to issue cards and accept boleto payments.
BoldSign API
Sign a payment agreement in BoldSign, then issue the boleto through Boleto Cloud.
Pair when a contract must be signed before the first boleto is issued.
Specific to using Boleto Cloud API API through Jentic.
Why is there no official OpenAPI spec for Boleto Cloud API?
Boleto Cloud does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Boleto Cloud API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Boleto Cloud API use?
Boleto Cloud uses HTTP Basic authentication with your API key as the username. Through Jentic the credential is held in the encrypted vault and only a scoped, short-lived token reaches the agent context.
Can I issue a boleto with a Pix QR code attached?
Yes. POST /boletos accepts the boleto details and Boleto Cloud will optionally include a Pix QR code on the same slip when configured for the payer's bank. The returned token identifies the boleto for later lifecycle calls.
How do I issue a carnê with multiple installments?
POST /carnes with the customer details and the list of installments. Boleto Cloud creates the full series of boletos as one carnê document, useful for annual subscription or tuition billing.
What are the rate limits for the Boleto Cloud API?
Formal rate limits are not declared in the OpenAPI spec. For high-volume issuance, prefer POST /batch/boletos over many single calls — batch is the supported path for monthly billing runs.
How do I reconcile paid boletos through Jentic?
Search Jentic for 'submit CNAB return file', load the POST /arquivos/cnab/retornos operation, then execute it with the bank's daily return file. Boleto Cloud parses the file and updates registration status for each boleto.
/batch/boletos
Create boletos in batch
/arquivos/cnab/remessas
Submit a CNAB remittance file
/arquivos/cnab/retornos
Submit CNAB return files for reconciliation