List all wallet transactions with pagination
cURL
curl --request GET \ --url https://api.example.com/wallets/history
curl "https://api.midasprotocol.org/wallets/history?limit=10&offset=0" \ -H "Authorization: Bearer pp_your_key"
{ "data": [ { "id": "uuid", "type": "PAYMENT", "direction": "outgoing", "amount": "25.00", "currency": "USDC", "rail": "internal", "fees": "0.50", "status": "COMPLETED", "createdAt": "2026-01-01T00:00:00.000Z" } ], "pagination": { "total": 42, "limit": 10, "offset": 0, "hasMore": true } }