The payment layer for DemocracyCraft

DollaCard lets banks issue cards and vendors accept payments across the server — connected through the Treasury economy. It's Stripe, for DemocracyCraft.

I'm a Bank I'm a Vendor Pay with a Card
1

A bank issues a card

The bank adds a "Cards" tab to its site and mints a 10-digit card + 3-digit CVV via DollaCard.

2

A customer spends it at a vendor

Any shop that accepts DollaCard can take the card at checkout.

3

DollaCard settles it

The bank pays DollaCard the full amount. DollaCard takes its 3% fee, then pays the vendor the rest.

Get started

Three roles, one payment network.

For Banks

You do the credit — we process it

Add a Cards tab to your bank site. Issue cards to your customers. DollaCard handles every transfer.

  • Get a bank API key
  • Embed the ready-made Cards widget
  • Bank pays us → we take 3% → we pay the vendor
  • Webhooks when your cards are used
Bank onboarding →
For Vendors

Accept payments in minutes

Link a DemocracyCraft firm account and start charging cards, or use the hosted checkout page.

  • Get a vendor API key
  • Charge cards in one call
  • Request payouts anytime
  • Track volume, fees & earnings
Sign up as a vendor →
For Cardholders

Pay anywhere DollaCard is accepted

Use the card your bank gave you. No need to sign up — just enter your number and CVV at checkout.

  • 10-digit card number
  • 3-digit security code (CVV)
  • Works at every DollaCard vendor
Try a checkout →

API Reference

Every request uses Authorization: Bearer YOUR_API_KEY.

Banks

POST/api/bank/registerRegister your bank and get an API key.
POST/api/bank/cards/issueIssue a card → card_number + cvv.
GET/api/bank/cardsList your cards (masked).
DELETE/api/bank/cards/:idDeactivate a card.
GET/api/bank/balanceYour firm's Treasury balance.
POST/api/bank/webhookSet your webhook URL.

Vendors

POST/api/vendor/registerRegister your shop and get an API key.
POST/api/vendor/chargesCharge a card: card_number, cvv, amount.
GET/api/vendor/chargesList your charges.
POST/api/vendor/payoutsMove your net earnings to your firm.
GET/api/vendor/payoutsList your payouts.
POST/api/vendor/webhookSet your webhook URL.