Returns the transaction history of one terminal, sorted by date descending and paginated. Use it to reconcile the terminal against your own records, or to recover a transaction_reference you failed to store.Kushki ONE Cloud is currently in Beta for Chile 🇨🇱. Do not deploy to production without coordinating with the Kushki integration team.
Operation#
Cloud mode exposes a single unified search. For offline local-terminal search, use the Local mode transaction_search_local endpoint.
Request#
Only page and size are required. filters and every property inside it are optional — combine just the ones you need.{
"page": 1,
"size": 10,
"filters": {
"last_four_digits": "9130",
"transaction_type": "charge",
"start_date": 1785556800000,
"end_date": 1788235199000
}
}
| Filter | Notes |
|---|
bin | First six digits of the card |
last_four_digits | Last four digits |
client_transaction_id | The idempotency key you sent |
transaction_reference | The reference Kushki returned |
transaction_type | charge, preAuth, capture, reAuthorization, posTip, void, refund |
start_date / end_date | Unix timestamps in milliseconds. Send 0 in both to disable date filtering |
transaction_type uses camelCase (preAuth, reAuthorization, posTip) even though the endpoint paths use snake_case. size caps at 500.
Dates are the easy thing to get wrong#
start_date and end_date are 13-digit millisecond timestamps. A 10-digit value in seconds is a thousand times smaller, so it lands in January 1970:| What you sent | Symptom |
|---|
| Both fields in seconds | Empty result set |
Only start_date in seconds | Returns your full history, not the range you asked for |
Only end_date in seconds | Validation error 2021, start_date must be before end_date |
The middle case is the dangerous one — the request succeeds and returns data, just far more than you meant. Check the digit count before you reconcile.
The value is an absolute instant on the epoch, with no timezone of its own. Chile observes DST (UTC-4 in winter, UTC-3 in summer), so resolve America/Santiago with a timezone library rather than hardcoding an offset:
Got a suggestion on this documentation? Contact us.