List balance records for an account
curl -X GET "https://test-api.kashier.io/v2/account/string/records"{ "message": "string", "data": [ { "id": "string", "accountId": "string", "amount": 0, "fees": 0, "operation": "string", "status": "string", "comment": "string", "reason": "string", "valueDate": "string", "origin": "string", "originReference": "string", "createdAt": "string" } ], "pagination": { "total": 0, "limit": 0, "page": 0, "pages": 0 }}Lists the balance records of one account, newest first — the statement lines behind the balance. Each record is a single movement (a settlement credit, a payout debit, a refund, or an adjustment) and carries the operation that caused it plus the reference of the thing that originated it. Call GET /v2/balance/record-details/{recordId} for the full detail of any one line.
Authorization
secretKey Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).
In: header
Path Parameters
Balance account identifier.
Query Parameters
Page number.
Number of records per page.
Filter by record type.
Response Body
application/json
application/json
application/json
application/json
application/json
Get balance account details GET
Retrieves one balance account in full — balances, the payout method money leaves by, and the last transfer made from it. GET /v2/account returns the same document for every account you own; use thi…
Export balance records for an account GET
Exports one account's balance records as a spreadsheet, applying the same filters as the records list. Pass email to have the export delivered to that address instead of returned in the response.