List batches of charges with due date (Bacen /lotecobv)
Retrieves the list of batches of charges with due date. Bacen API Pix: consultar lotes de cobranças com vencimento.
Query Parameters
- Type: string Format: date-timeiniciorequired
the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
- Type: string Format: date-timefimrequired
the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
- Type: integer Format: int32paginacao
.pagina Atual Página corrente (0-based)
- Type: integer Format: int32paginacao
.itens Por Pagina Itens por página
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for get/api/lotecobv
curl 'http://localhost:8080/api/lotecobv?inicio=&fim=' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"parametros": {
"inicio": "2026-09-16T19:14:18.843Z",
"fim": "2026-09-16T19:14:18.843Z",
"paginacao": {
"paginaAtual": 1,
"itensPorPagina": 1,
"quantidadeDePaginas": 1,
"quantidadeTotalDeItens": 1
}
},
"lotes": [
{
"id": "string",
"descricao": "string",
"criacao": "2026-09-16T19:14:18.843Z",
"cobsv": [
{
"criacao": "2026-09-16T19:14:18.843Z",
"txid": "string",
"status": "EM_PROCESSAMENTO",
"problema": {
"type": "https://pix.bcb.gov.br/api/v2/error/CobVOperacaoInvalida",
"title": "Cobrança inválida.",
"status": 400,
"detail": "string",
"correlationId": "string",
"violacoes": [
{
"razao": "string",
"propriedade": "cob.chave",
"valor": "061996671234"
}
]
}
}
]
}
]
}