Skip to content
Hoody.com

Your money goes into a General Balance for infrastructure or an AI Balance for LLM credits. Three payment methods add funds: credit card for instant top-ups, cryptocurrency for payments that need no account, and bank transfer for large deposits. Every transaction is logged, every payment generates an invoice, and both are readable over HTTP.


You can read both balances in one call or query either one on its own:

Terminal window
# See both balances at once
hoody wallet balance get
# General balance only
hoody wallet balance general
# AI balance only
hoody wallet balance ai

Credit Cards

Providers: Visa, MasterCard, American Express Processor: Stripe (PCI-compliant) Fees: None Speed: Instant

Save a card once and pay from it whenever you want. Hoody never sees your card number; Stripe stores and processes it.

Cryptocurrencies

Supported: BTC, ETH, USDT, USDC, LTC, 100+ more Processor: NOWPayments Fees: +5% processing Speed: 5-60 minutes (blockchain confirmation)

You do not need an account or an identity check. Send the amount to the address you are given and wait for confirmation.

Bank Transfer

Minimum: $500+ Fees: None from Hoody (your bank may charge) Speed: 1-3 business days

Contact support for account details. Best for large deposits and enterprise accounts.


Save a credit card for repeat payments:

Terminal window
# The CLI cannot add a payment method. See the SDK and HTTP tabs.
# It can only inspect and manage methods that already exist:
hoody wallet payment-methods list
Terminal window
# List all payment methods
hoody wallet payment-methods list
# Set a card as default
hoody wallet payment-methods set-default $PAYMENT_METHOD_ID
# Delete a card
hoody wallet payment-methods delete $PAYMENT_METHOD_ID

Add funds to your General Balance with a card via Stripe Checkout:

Terminal window
# Card top-ups complete on Stripe's hosted checkout page, so they run
# through the SDK/HTTP API or the dashboard rather than a direct CLI charge.
# From the CLI, check your balance and transactions:
hoody wallet balance get
hoody wallet transactions list

Redirect the user to the returned checkout URL. Funds are credited after Stripe confirms settlement, usually within seconds. There are no additional fees, and an invoice is generated automatically.


Crypto payments work from any country, need no account, and carry no identity check.

  1. Initiate the payment

    Select cryptocurrency in the dashboard or API. The amount is converted to crypto at the current exchange rate.

  2. Send to the address

    You receive a unique payment address. Send the exact amount shown (including the 5% fee).

  3. Wait for confirmation

    • Bitcoin: 15-60 minutes (1-6 confirmations)
    • Ethereum: 5-15 minutes (12 confirmations)
    • Litecoin: 10-30 minutes (6 confirmations)
    • Stablecoins (USDT/USDC): 5-15 minutes (varies by chain)
  4. Funds added

    Hoody credits your balance, generates an invoice, and sends a confirmation email.

BTC, ETH, USDT, USDC, LTC, and 100+ more via NOWPayments. Check the payment interface for the complete list.


Bank transfers are for large deposits and enterprise accounts.

  1. Contact support

    Email with your desired amount, account ID, and preferred currency (USD, EUR).

  2. Receive bank details

    Account number, routing details, SWIFT/BIC code, and a reference number (required for crediting).

  3. Send the transfer

    Include the reference number in the transfer notes. Without it, crediting may be delayed.

  4. Funds arrive (1-3 business days)

    Hoody credits your balance, generates an invoice, and sends an email confirmation.

Hoody charges no fee on bank transfers. Your bank may charge wire, SWIFT, or conversion fees.


Every payment, charge, transfer, and refund lands in the same transaction list:

Terminal window
# List recent transactions
hoody wallet transactions list
# Get details for a specific transaction
hoody wallet transactions get $TRANSACTION_ID

Each transaction includes: unique ID, amount, currency, type (payment, credit, debit, refund, adjustment), status (pending, completed, failed, cancelled), timestamp, and related invoice.


Every payment generates an invoice automatically. Download them for accounting, taxes, or client billing:

Terminal window
# List all invoices
hoody wallet invoices list
# Download invoice as PDF (-o raw is required: the default output
# JSON-stringifies the binary body and is not a usable PDF)
hoody wallet invoices download $INVOICE_ID -o raw > invoice.pdf
# Generate invoice for a transaction that's missing one
hoody wallet invoices generate $TRANSACTION_ID

MethodSpeedFeesBest For
Credit CardInstantNoneRegular top-ups, automation
Cryptocurrency5-60 min+5%Privacy, international, no-account
Bank Transfer1-3 daysBank fees varyLarge deposits ($500+), enterprise

Pick the method by what you need most: speed (card), privacy (crypto), or volume (bank transfer).


Your bank may flag hosting purchases as suspicious. Call your bank to whitelist Stripe. Verify the card hasn’t expired and the billing address matches. Check payment status:

Terminal window
hoody wallet transactions list --limit 10 # no CLI command for payment-intent status; use the SDK/HTTP tab

Check the blockchain explorer for your transaction hash. Bitcoin needs 1-6 confirmations, Ethereum needs 12. If confirmed but not credited, contact support with the transaction hash and payment reference.

Verify you included the reference number. Check with your bank that the transfer was processed and not held for review. SWIFT transfers can take up to 5 days. Contact support with your bank confirmation and transfer details.