---
title: "$viva->wallets->searchTransactions()"
method: GET
path: "/Wallets/searchTransactions"
tags: ["Wallets"]
---

# $viva->wallets->searchTransactions()

`GET /Wallets/searchTransactions`

Recherche les transactions de compte (tous les portefeuilles).

```php
$transactions = $viva->wallets->searchTransactions([
    'date_from' => '2026-03-01',
    'date_to' => '2026-03-18',
    'walletId' => 12345,
]);

foreach ($transactions as $txn) {
    echo $txn['amount'] . "\n";
}
```

## Query parameters

- `filters` object
  - `date_from` string, date
  - `date_to` string, date
  - `walletId` integer

## Response `200`

Liste de transactions de compte

- object[]

---

[API](https://skmtc.net/qrcommunication/apis/viva-wallet-merchant-sdk-re-fe-rence-php.md) · [All operations](https://skmtc.net/qrcommunication/apis/viva-wallet-merchant-sdk-re-fe-rence-php/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qrcommunication/viva-wallet-merchant-sdk-re-fe-rence-php/versions/bcafd06ce584/schema)
