binance_get_deposit_history
List crypto deposits into Binance account for a date range up to 90 days, filterable by coin, status, or transaction ID.
Instructions
List crypto deposits into the account for one window (up to 90 days).
Calls GET /sapi/v1/capital/deposit/hisrec (SIGNED, IP weight 1). One call answers
a single window; Binance caps that window at "less than 90 days" and defaults to
the last 90 days when no times are given. The cap is enforced here, before the
request, so an over-wide window fails with a readable message instead of -1127.
When to Use:
"Did my USDT deposit land?" — a recent, bounded lookup.
Reconciling one month's deposits, or chasing one
tx_id.
When NOT to Use:
For the full history since the account opened — use
binance_get_all_deposits, which walks these windows for you and returns a resume cursor.For withdrawals — use
binance_get_withdraw_history.For fiat (card/bank) deposits — those are not here; use
binance_get_fiat_orders(fiat.py).
Returns:
A markdown table (insertTime, completeTime, coin, amount, network, status,
walletType, txId) plus per-coin totals, capped at 50 displayed rows; or the raw
Binance array with response_format="json".
Pagination:
limit is 1-1000 (Binance default 1000) and offset pages within the window. A
full page means there is more: re-call with offset += limit.
Windows:
start_time/end_time together must span under 90 days. start_time alone must be
under 90 days ago (Binance defaults endTime to now). end_time alone gets a
startTime of end_time - 89 days so the window actually brackets it.
Examples: params = {"coin": "USDT", "status": "success"} params = {"start_time": "2026-08-01", "end_time": "2026-09-01"} params = {"tx_id": "0xabc...", "response_format": "json"}
Error Handling:
An over-wide window is rejected locally. -2015 means the key lacks Reading
permission or this IP is not allowlisted. /sapi does not exist on the spot
testnet — a 404 there is expected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |