CH·02CLI reference
gpu billing deposits
List your stablecoin deposits
List your stablecoin deposits
Synopsis
Shows the org's deposits, newest first (capped at 50), with the status of each.
gpu billing deposits get shows one in full — including the
address and the exact amount, so it is the command to run when you created a
deposit, closed the terminal, and need the payment details back.
Deposits are scoped to the org that owns your API key. A deposit id belonging to another organization returns the same "not found" as an id that does not exist.
gpu billing deposits [flags]
gpu billing deposits get <deposit-id> [flags]
Examples
# All your deposits
gpu billing deposits
# Recover the payment details for one you already created
gpu billing deposits get dep_01j9x2
# Which deposits are still waiting on funds?
gpu billing deposits --output json | jq '.[] | select(.status=="created")'
Statuses you will see
| Status | Meaning |
|---|---|
created | Address issued; nothing has arrived yet. |
detected / confirming | Your transaction is on chain and gaining confirmations. |
settled | Funds are in hand; the deposit is being finalized. |
screening / held_screening | Under review. See the guide. |
credited | Done — your balance went up by credited_cents. |
credited_underpaid / credited_overpaid | Credited at what actually arrived, which differed from what you requested. |
expired | The payment window closed with nothing received. Create a new deposit. |
expired_received | Funds arrived after the window closed. Contact support — they are visible and attributable. |
failed / failed_screening | Not credited. Contact support. |
Options
-h, --help help for deposits
Options inherited from parent commands
--api-base string API base URL (override with GPUAI_API_BASE env) (default "https://api.gpu.ai/v1")
--debug Enable debug logging to stderr
-o, --output string Output format: table|json (default table on TTY, json otherwise)
SEE ALSO
- gpu billing - Add funds to your account and review deposits
- gpu billing deposit - Add funds to your account balance with a stablecoin deposit
- Stablecoin Deposits guide