| name | bithumb-account |
| description | Read account state on Bithumb: balances (KRW/coin), order chance (available balance for trading), withdrawal chance (available withdrawal amount), wallet status, blockchain sync, deposit/withdrawal availability, block height/updated time, and API key info. Requires API credentials. ๋น์ธ ๊ณ์ข ์๊ณ , ์ฃผ๋ฌธ ๊ฐ๋ฅ ๊ธ์ก, ์ถ๊ธ ๊ฐ๋ฅ ๊ธ์ก, ์ง๊ฐ ์ํ, ์
์ถ๊ธ ํํฉ(๊ฐ๋ฅ ์ฌ๋ถยท๋ธ๋ก ๊ฐฑ์ ์๊ฐยท๋ธ๋ก ๋๊ธฐํ), API ํค ์ ๋ณด๋ฅผ ์กฐํํฉ๋๋ค. ์๊ณ ยท์ฃผ๋ฌธ ๊ฐ๋ฅ ๊ธ์กยท์ถ๊ธ ๊ฐ๋ฅ ๊ธ์กยท์ง๊ฐ ์ํยท์
์ถ๊ธ ๊ฐ๋ฅ ์ฌ๋ถยท๋ธ๋ก ๊ฐฑ์ ์๊ฐยทAPI ํค ์กฐํ ๊ด๋ จ ์์ฒญ์ ์ฌ์ฉํ์ธ์. |
Bithumb Account CLI
Read-only account state: balances, order chance, wallet status, API keys. Requires API credentials.
Prerequisites
Install @bithumb-official/bithumb-cli and set BITHUMB_ACCESS_KEY / BITHUMB_SECRET_KEY env vars.
Credential Check
Run bithumb system diagnose before any authenticated command. If it fails (connection or auth), STOP โ do not retry. Inform the user (in Korean): "์ธ์ฆ ์คํจ. API ํค๊ฐ ์ ํจํ์ง ์๊ฑฐ๋ ๋ง๋ฃ๋์์ ์ ์์ต๋๋ค." and guide them to set/refresh BITHUMB_ACCESS_KEY and BITHUMB_SECRET_KEY; re-run diagnose before retrying.
Skill Routing
Market data โ bithumb-market; account/wallet/API keys โ this skill; orders โ bithumb-trade; deposits โ bithumb-deposit; withdrawals โ bithumb-withdraw; audit logs & diagnostics โ bithumb-system.
Command Index
| # | Command | Type | Description |
|---|
| 1 | bithumb account assets | READ | All account assets (KRW + coins) |
| 2 | bithumb account order-chance --market <m> | READ | Order availability: balance, fees, limits for a market |
| 3 | bithumb account wallet-status | READ | Wallet status: block sync, deposit/withdrawal availability |
| 4 | bithumb account api-keys | READ | API key list and expiration dates |
Audit logs and diagnostics (bithumb system audit / diagnose) are in bithumb-system.
Routing โ intent โ command
| User intent | Command |
|---|
| Check assets (all currencies) | bithumb account assets |
| Check trading availability for a market | bithumb account order-chance --market KRW-BTC |
| Check wallet/blockchain status | bithumb account wallet-status |
| Check API key info/expiration | bithumb account api-keys |
All commands are read-only โ run immediately, no confirmation or verification needed.
CLI Reference
account assets โ All Assets
bithumb account assets
No parameters. Returns every currency held: currency, balance, locked (reserved for open orders), avg_buy_price (volume-weighted), unit_currency.
account order-chance โ Order Availability
bithumb account order-chance --market KRW-BTC
--market (required): market code. Returns bid_fee/ask_fee, available bid/ask balances, order limits (min/max), market info. Pre-trade essential โ call before placing an order to verify balance, fees, and constraints.
account wallet-status โ Wallet Status
bithumb account wallet-status
No parameters. Per-currency block sync state and deposit/withdrawal availability. Check before deposit/withdrawal โ if block_state is not normal or the operation is disabled (e.g. blockchain maintenance), it will fail.
account api-keys โ API Key Info
bithumb account api-keys
No parameters. Returns API keys with expiration dates. Check periodically (or when auth suddenly fails) to avoid unexpected authentication failures.
Cross-Skill Workflows
Pre-trade balance check
User: "BTC 0.01๊ฐ ์ด ์ ์์ด?"
1. bithumb-account bithumb account order-chance --market KRW-BTC โ check available KRW & fees
2. bithumb-market bithumb market ticker KRW-BTC โ current price
โ user approves
3. bithumb-trade bithumb trade place --market KRW-BTC --side bid ...
Pre-withdrawal check (full Mandatory Pre-flight)
User: "BTC ์ถ๊ธํ๋ ค๊ณ ํ๋๋ฐ ๊ฐ๋ฅํด?" / "BTC ์ถ๊ธํ๊ธฐ ์ ์ ๋ค ์ฒดํฌํด์ค"
1. bithumb-account bithumb account assets โ check BTC balance
2. bithumb-account bithumb account wallet-status โ check BTC withdrawal enabled
3. bithumb-withdraw bithumb withdraw chance --currency BTC --net-type BTC
โ fee, min, daily limit, net_type
4. bithumb-withdraw bithumb withdraw addresses โ confirm destination is allowed-list
5. bithumb-market bithumb market fee-inout BTC โ cross-check fee from market side
โ user explicitly confirms (currency, net_type, full address, amount, memo if applicable)
6. bithumb-withdraw bithumb withdraw coin --currency BTC --net-type BTC --amount ...
7. bithumb-withdraw bithumb withdraw list --currency BTC --limit 1 โ verify status
This pre-flight is mirrored in bithumb-withdraw/SKILL.md as its "๐ Mandatory Pre-flight Checklist" so it stays visible when only the withdraw skill is active.
Global Notes
- All commands require valid API credentials and are read-only.
- Bithumb has no demo/simulated mode โ all data reflects real account state.
--json returns the raw Bithumb API response.
account assets may include zero-balance currencies; locked funds are reserved for open orders and unavailable for new ones.