v1
latestOpenAPI 3.1.0MIT2026-07-2484155300.5 KBTransaction
List
Recovers all transactions for the account provided using cursor-based pagination.
get/v2/transactions
Query parameters
accountIdstring uuid required
Account primary identifier
idsstring[]
Comma-separated list of transaction identifiers (UUIDs). Maximum of 500 ids per request.
dateFromstring date-time
Filter transactions with date greater than or equal to the given date. Format (yyyy-mm-dd). Cannot be used together with createdAtFrom.
dateTostring date-time
Filter transactions with date less than or equal to the given date. Format (yyyy-mm-dd).
createdAtFromstring date-time
Filter transactions created at or after this date. Format (yyyy-mm-ddThh:mm:ss.000Z)
afterstring
Cursor for the next page of results. Obtained from the 'next' field of a previous response.
Response
Retrieve a list of transactions for an account using cursor-based pagination
Example response
{
"results": [
{
"id": "6ec156fe-e8ac-4d9a-a4b3-7770529ab01c",
"description": "TED Example",
"descriptionRaw": null,
"currencyCode": "BRL",
"amount": 1500,
"date": "2020-10-14T00:00:00.000Z",
"balance": 3500,
"category": "Transfers",
"categoryId": "05000000",
"accountId": "03cc0eff-4ec5-495c-adb3-1ef9611624fc",
"providerCode": "123456",
"type": "CREDIT",
"status": "POSTED",
"paymentData": {
"payer": {
"name": "Tiago Rodrigues Santos",
"branchNumber": "090",
"accountNumber": "1234-5",
"routingNumber": "001",
"documentNumber": {
"type": "CPF",
"value": "882.937.076-23"
}
},
"reason": "Taxa de serviço",
"receiver": {
"name": "Pluggy",
"branchNumber": "999",
"accountNumber": "9876-1",
"routingNumber": "002",
"documentNumber": {
"type": "CNPJ",
"value": "08.050.608/0001-32"
}
},
"paymentMethod": "TED",
"referenceNumber": "123456789"
},
"merchant": null,
"providerId": null
}
]
}