Get Daily Balance Summary Detailed
GETTag: api-baas-get-operations-balance-daily-summary-detailedDescription: Retrieve the daily balance summary for the authenticated user for a specific date or date range.Note: If the start date is not specified, the first day of the month will be used. If the end date is not specified, the current day will be used.Response Format: Returns an array of daily balance summaries, even if only one day is requested./v1/operations/balance/daily-summary-detailed
Request
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [movement_date]
Default value: movement_date
Page sort attribute.
Possible values: [asc, desc]
Default value: asc
Page order.
Wallet currency tag.
Movement date start for the daily summary (YYYY-MM-DD).
Movement date end for the daily summary (YYYY-MM-DD).
Header Parameters
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Responses
- 200
- 400
- 401
The daily balance summary detailed (or summaries) returned successfully. Returns a paginated response with GetDailySummaryDetailedRestResponse objects.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Daily summary detailed items.
Movement date.
Initial balance in cents (R$).
Final balance in cents (R$).
Total debit in cents (R$).
Total credit in cents (R$).
Currency symbol.
Pix receive.
Pix devolution send.
Pix send self.
Pix send.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"movement_date": "2025-10-09T00:00:00.000Z",
"initial_balance": 150075,
"final_balance": 135025,
"total_debit": 15050,
"total_credit": 50000,
"currency_symbol": "BRL",
"pix_receive": 10000,
"pix_devolution_send": 0,
"pix_send_self": 10000,
"pix_send": 10000
}
]
}
If any required params are missing or has invalid format or type.
User authentication failed.