Build and operate full-featured banks for Minecraft servers. Veragom handles deposits, withdrawals, loans, investments, and admin tools — all automated through an in-game bot.
Veragom isn't a toy — it's a production banking platform built on Cloudflare's edge network. Full audit logging, HMAC-signed API requests, multi-tenant isolation, and automatic balance reconciliation every 5 minutes.
Go from zero to a fully operational bank with automated deposits, withdrawals, and a branded web portal.
Create an account on the Veragom platform. Configure your bank name, branding, interest rates, and connect your Discord.
Install the Fabric mod or Mineflayer bot on your server. It connects to the API automatically and begins processing commands.
Users sign up on your portal, verify their Minecraft account, and start depositing and withdrawing through in-game commands.
Every bank gets HMAC-signed REST API access. Build custom integrations, connect Discord bots, or automate workflows with full programmatic control.
const response = await fetch( 'https://api.veragom.com/api/accounts', { headers: { 'X-Bank-Key': BANK_PUBLIC_KEY, 'X-Signature': hmacSha256(body), 'X-Timestamp': Date.now(), }, } ); // Response { "accounts": [ { "id": "acc_xK9mN2", "name": "Primary Savings", "balance": 142850.00, "isPrimary": true } ] }