Skip to main content

Retrieving Account Transactions


Request

ENDPOINT
/cash_account/account/ACCOUNT_KEY/transactions
METHOD
GET

Response

STATUS
200
Response Body
{
"data": [
{
"transaction_key": "ed585534-8c05-431d-b829-0dc7883b24ba",
"transaction_type": "outgoing_wire_transfer",
"transaction_status": "pending_conciliation",
"transaction_description": "Descrição do pagamento",
"amount": -70000,
"transaction_datetime": "2025-01-01T14:00:00Z",
"account_balance": 500000,
"transaction_data": {
"counter_part_account": {
"owner": {
"name": "Nome da Contraparte",
"document_number": "***.805.49*-**"
},
"account_digit": "8",
"account_branch": "1",
"account_number": "1234567",
"financial_institution": {
"code": "329",
"ispb": "32402502"
}
},
},
"account": {
"account_key": "9c1d0c18-01ea-4c32-a878-1c6391f9aa44",
"account_type": "checking_account",
"financial_institution": {
"ispb": "32402502",
"code": "329",
"name": "QI Sociedade de Crédito Direto"
},
"account_status": "open",
"account_number": "3289018",
"account_digit": "7",
"account_branch": "0001",
"accounting_identification": 1,
"balance": 500000,
"owner": {
"name": "FUNDO TESTE",
"document_number": "93.625.214/0001-34"
},
"owner_document_number": "93.625.214/0001-34",
"account_configuration": {
"pix": true,
"wire_transfer": true
},
"billings": []
}
},
{
"transaction_key": "16c9c463-266e-4e73-b87d-efc32aa6727a",
"transaction_type": "incoming_wire_transfer",
"transaction_status": "reconciled",
"transaction_description": "Descrição",
"amount": 300000,
"transaction_datetime": "2025-06-04T13:00:00Z",
"account_balance": 570000,
"transaction_data": {
"counter_part_account": {
"owner": {
"name": "FUNDO TESTE",
"document_number": "93.625.214/0001-34"
},
"account_digit": "8",
"account_branch": "73",
"account_number": "567567",
"financial_institution": {
"code": "341",
"ispb": "60701190",
}
},
},
"account": {
"account_key": "9c1d0c18-01ea-4c32-a878-1c6391f9aa44",
"account_type": "checking_account",
"financial_institution": {
"ispb": "32402502",
"code": "329",
"name": "QI Sociedade de Crédito Direto"
},
"account_status": "open",
"account_number": "3289018",
"account_digit": "7",
"account_branch": "0001",
"accounting_identification": 1,
"balance": 500000,
"owner": {
"name": "FUNDO TESTE",
"document_number": "93.625.214/0001-34"
},
"owner_document_number": "93.625.214/0001-34",
"account_configuration": {
"pix": true,
"wire_transfer": true
},
"billings": []
},
"conciliation_group": {
"description": "TRANSFERÊNCIA: CONTA COBRANÇA -> CONTA PRINCIPAL",
"conciliation_group_key": "1ac2921c-6c81-481b-8472-6c4126bba4bf",
"conciliation_group_datetime": "2025-01-01T13:28:58Z"
}
}
],
"limit": 10,
"page": 0,
"is_last_page": true
}

Query Params

FieldTypeDescription
statusstringTransaction status
start_datestringQuery start date
end_datestringQuery end date
pagestringRetrieved page number

Response Fields

FieldTypeDescription
dataarrayList of Transaction objects
limitintLimit of objects retrieved per page
pageintRetrieved page number
is_last_pagebooleanInformation indicating if the retrieved page is the last

Transaction

FieldTypeDescriptionCharacters
transaction_keystringUnique transaction identifier key36
transaction_typestringTransaction typeUp to 50
transaction_statusstringTransaction statusUp to 50
transaction_descriptionstringTransaction description provided by the bankUp to 255
amountbigintTransaction value times 100 (e.g.: R$1.00 == 100)-
transaction_datetimestringTransaction date and timeISO 8601
account_balancebigintAccount balance after the transaction-
transaction_dataJSONObject with additional transaction information-
accountJSONAccount object containing the transaction-

Account

FieldTypeDescriptionCharacters
account_keystringUnique account identifier key36
account_typestringAccount typeUp to 50
financial_institutionJSONFinancial institution object-
account_statusstringAccount statusUp to 50
account_numberstringAccount numberUp to 50
account_digitstringAccount digit1
account_branchstringAccount branchUp to 50
accounting_identificationintAccount ordinal identifier-
balanceintCurrent account balance-
ownerJSONOwner object-
owner_document_numberstringOwner's document14 or 18
Attention

The balance is provided by concatenating reais and centavos e.g.: 1234 = R$ 12.34

Finacial institution

FieldTypeDescriptionCharacters
ispbstringBrazilian Payment System Identifier8
codestringFinancial institution code3
namestringFinancial institution nameUp to 255

Owner

FieldTypeDescriptionCharacters
namestringOwner's nameup to 255
document_numberstringOwner's document14 or 18

Conciliation Group

FieldTypeDescriptionCharacters
descriptionstringTransaction reconciliation descriptionUp to 255
conciliation_group_keystringUnique reconciliation identifier key36
conciliation_group_datetimestringReconciliation date and timeISO 8601