verify_usdt_deposit
Check / confirm a USDT deposit created by create_usdt_deposit. Scans the blockchain for a matching transfer and credits your balance when found. Idempotent — safe to poll every ~15s, credits only once. PREREQUISITE: order_code + claim_token from create_usdt_deposit. WHEN TO USE: after the user has sent the USDT, to confirm and credit it; optionally pass method="hash" + tx_hash to verify by a specific transaction. PREFER INSTEAD: verify_binance_deposit for Binance Pay deposits, get_my_balance/wallet_history to inspect balance afterwards. Kiểm tra & xác nhận đơn nạp USDT — quét blockchain, khớp thì cộng tiền (an toàn khi gọi lại nhiều lần).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | No | Verification mode: "amount" (default, auto-scan by unique amount) or "hash". | |
| api_key | Yes | Your shop account API key. | |
| tx_hash | No | Transaction hash (only when method="hash"). | |
| order_code | Yes | order_code from create_usdt_deposit. | |
| claim_token | Yes | claim_token from create_usdt_deposit (single-order secret). |