Examples for scheduled monitoring with list and get endpoints.
shellscript
curl -X GET "$BASE_URL/v2/wallets?limit=25" \ -H "Authorization: Bearer $GROUND_API_KEY"
curl -X GET "$BASE_URL/v2/wallets?limit=25&cursor=$NEXT_CURSOR" \ -H "Authorization: Bearer $GROUND_API_KEY"
curl -X GET "$BASE_URL/v2/wallets/$WALLET_ID" \ -H "Authorization: Bearer $GROUND_API_KEY"
curl -X GET "$BASE_URL/v2/wallets/$WALLET_ID/deposits?limit=50" \ -H "Authorization: Bearer $GROUND_API_KEY"
curl -X GET "$BASE_URL/v2/wallets/$WALLET_ID/withdrawals?status=processing&status=broadcasted&limit=50" \ -H "Authorization: Bearer $GROUND_API_KEY"