Get Dynamic Immediate Charge (COB-3)
Retrieves a dynamic immediate charge (cob) by its transaction identifier (txid). Returns the complete charge details including status, amount, and QR code payload. Implements Bacen API Pix v2.9.0 specification.
Query Parameters
- Type: string Format: dateinicio
full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
- Type: string Format: datefim
full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
- Type: stringcpf
- Type: stringcnpj
- Type: booleanlocation
Presente - Type: string enumstatus
Status of a dynamic charge
values- A
T I V A - C
O N C L U I D A - R
E M O V I D A _ P E L O _ U S U A R I O _ R E C E B E D O R - R
E M O V I D A _ P E L O _ P S P
- Type: object ·paginationrequired
Pagination and sorting parameters
- Type: integer Format: int32page
Page number (zero-based)
- Type: integer Format: int32sizemax:500
Number of items per page (max: 500)
- Type: array string[]sort
Sort criteria in the format 'field,direction' (e.g., 'createdAt,desc')
Headers
- Type: stringx
-branch requiredBranch of the charge owner account
- Type: stringx
-account -number requiredNumber of the charge owner account
- Type: stringIdempotency
- Key required
Responses
- application/json
- application/json
Request Example for get/cob
curl 'http://localhost/cob?page=0&size=50&sort=' \
--header 'x-branch: ' \
--header 'x-account-number: ' \
--header 'Idempotency-Key: ' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"id": "string",
"type": "STATIC",
"txid": "string",
"status": "ATIVA",
"revisao": 1,
"calendario": {
"criacao": "2026-07-31T12:59:10.307Z",
"expiracao": 1
},
"valor": {
"original": "string",
"modalidadeAlteracao": 1
},
"chave": "string",
"devedor": {
"cpf": "string",
"cnpj": "string",
"nome": "string"
},
"loc": {
"id": "string",
"url": "string"
},
"solicitacaoPagador": "string",
"infoAdicionais": [
{
"nome": "string",
"valor": "string"
}
],
"pixCopiaECola": "string",
"qrCodeImage": {
"contentType": "string",
"base64": "string"
},
"createdAt": "2026-07-31T12:59:10.307Z"
}