DEVELOPER API

Build with EZCards

Integrate crypto-funded virtual cards into your app, bot, or platform

Get API Key

Instant Cards

Issue virtual Visas programmatically. Cards are delivered in under 5 minutes via API.

1,200+ Tokens

Accept any cryptocurrency via FixedFloat. BTC, ETH, SOL, USDT, and 1,200+ more.

Zero KYC

No identity verification needed for your users. Privacy-first by design.

How it works

01 /

Get your API key

Register with your email below. Your key is generated instantly -- no approval process.

02 /

Integrate the API

Use our RESTful endpoints to purchase cards, check balances, and manage orders programmatically.

03 /

Earn on every card

Build products on top of EZCards and earn revenue on each card issued through your platform.

Get your API key

Enter your email to generate a key instantly.

Quick start

cURL
curl -X POST https://ezcards.cc/api/v1/cards/purchase \
  -H "Content-Type: application/json" \
  -H "X-API-Key: ezc_live_your_key_here" \
  -d '{
    "product_id": 1,
    "load_amount_usd": 100,
    "pay_currency": "BTC"
  }'
JavaScript
const res = await fetch(
  "https://ezcards.cc/api/v1/cards/purchase",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "X-API-Key": "ezc_live_your_key_here",
    },
    body: JSON.stringify({
      product_id: 1,
      load_amount_usd: 100,
      pay_currency: "BTC",
    }),
  }
);
const order = await res.json();

API endpoints

MethodEndpointDescription
POST/api/v1/developers/registerRegister and get an API key
GET/api/v1/developers/keysList your API keys
DELETE/api/v1/developers/keys/:idRevoke an API key
GET/api/v1/productsList available card products
GET/api/v1/currenciesList supported crypto chains
POST/api/v1/cards/purchasePurchase a virtual card
GET/api/v1/cards/:orderIdGet order status and card details
GET/api/v1/cards/:orderId/balanceGet live card balance
POST/api/v1/cards/:orderId/reloadReload an existing card
60
Requests / min
REST + JSON
API Format
X-API-Key
Auth Header

Need help? Contact us at dev@ezcards.cc