EQVPS

Give your AI agent a budget: prepaid crypto + autonomous spending

Jun 10, 2026 · 2 min read · EQVPS

Autonomous agents need infrastructure — a server to run a scraper, a bot, a sandbox. But a wallet prompt on every purchase defeats the point of autonomy. EQVPS solves this with a prepaid balance: fund it once with crypto, and your agent orders and renews servers on its own, within that budget.

The model: top up once, spend autonomously

  1. Get a tokenregister_account (first_name, last_name, email) returns a Bearer token. No password, no human step.
  2. Fund the balancetopup_balance returns a crypto checkout_url; pay it in USDC/USDT. The balance is credited automatically once the on-chain payment confirms.
  3. Agent orders from balanceorder_vps debits the prepaid balance automatically when it's sufficient. No per-order checkout, no human approval. The server provisions; the agent reads access via get_vps_status.
  4. Repeat within budget — every order_vps (or renewal) draws from the balance until it's low. Top up again when needed.
register_account({ first_name, last_name, email })   // → Bearer token
topup_balance({ amount: 25 })                         // → checkout_url; pay 25 USDC/USDT
order_vps({ product: "nano", os_id: <from list_plans> })   // debits balance, provisions
get_vps_status({ service_id: <your-service-id> })     // SSH host/port + one-time root password

Why a balance, not pay-per-order

A prepaid balance is the cleanest autonomy primitive: one human-approved funding event sets a hard budget, then the agent operates freely inside it. The agent never holds your wallet keys, and your exposure is capped at the balance — not your whole wallet. If the agent goes idle, the funds simply stay as balance for the next order or renewal.

It also smooths a crypto quirk: exchange withdrawal minimums are often higher than a single small order ($3–5). Top up $25 once and the agent can place several orders from it — no repeated on-chain transfers, no per-order minimum problem.

Pay in USDC/USDT, no card

Funding is crypto-native: USDC/USDT on Base, Ethereum, or Tron — no card required. Base and Tron are the cheapest/fastest networks for top-ups. Send from a wallet or straight from an exchange withdrawal.

Works over MCP or REST

Fund once, set the budget, let the agent run. See the Docs for full details.

FAQ

How does the agent pay without a human on every order?

You fund a prepaid balance once (topup_balance → pay the crypto checkout in USDC/USDT). After that, order_vps spends from the balance automatically — no checkout, no human step per order — until the balance runs low.

Which networks can I top up with?

USDC or USDT on Base or Ethereum, and USDT on Tron. Send from any wallet or exchange; the balance is credited once the on-chain payment confirms.

Does the agent spend on its own?

Yes. Once the balance is funded, the agent calls order_vps and the cost is debited from the balance — it never touches your wallet again. Top up once, let it operate within that budget.

Is there a minimum top-up?

Top up any amount in USD-equivalent (server-side minimum applies); $10–25 is a practical starting budget for small plans that start at $3/month.

← Back to blogSee plans & pricing →