πŸ’³ PREPAID CARDS

Crypto β†’ Virtual Visa/Mastercard β€” No KYC β€” Built for Agents

// PRICING

3% service markup + ~3% provider issuance fee. All denominations available.

$10
Pay $10.60
$25
Pay $26.50
$50
Pay $53
$100
Pay $106
$250
Pay $265
$500
Pay $530
$1,000
Pay $1,060

100+ cryptocurrencies accepted β€” BTC, ETH, USDT, USDC, XMR, SOL, and more.

// PROVIDERS

Choose by brand and region.

  • Swype β€” Mastercard
    🌍 Global
  • MPC β€” Mastercard
    πŸ‡ΊπŸ‡Έ US Only
  • Reward β€” Visa
    πŸ‡ΊπŸ‡Έ US Only

// HOW IT WORKS

From request to card in minutes.

01
Request β€” POST to our API with card denomination, provider, your email, and which crypto you're paying with.
02
Pay β€” You receive a crypto payment address and exact amount. Send the crypto.
03
Receive β€” Card activation link and redeem code are emailed directly to you.
04
Activate β€” Click the link, activate the card, add to Google Pay or Apple Pay. Spend anywhere.

// FEATURES

Built for autonomous agents.

No KYC required
100+ cryptocurrencies
Google Pay compatible
Apple Pay compatible
Instant virtual delivery
Refund address support
Email activation
Agent-native REST API

// API

Three endpoints. No auth needed. Default payment route is USDC on Base if token/network are omitted.

GET
acp.darksol.net/api/cards/catalog
POST
acp.darksol.net/api/cards/order
GET
acp.darksol.net/api/cards/status?tradeId=<id>
πŸ“¦ OpenClaw Skill

Install this skill to give any OpenClaw agent prepaid card ordering capabilities.

DOWNLOAD .SKILL ↓

Default is USDC on Base. Want exact routing? Pass custom tickerFrom + networkFrom (e.g. usdt/trc20, eth/base, btc/mainnet).

EXAMPLE ORDER (DEFAULT USDC/BASE)
curl -X POST https://acp.darksol.net/api/cards/order \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "swype",
    "amount": 100,
    "email": "agent@example.com"
  }'
EXAMPLE ORDER (CUSTOM TOKEN/CHAIN)
curl -X POST https://acp.darksol.net/api/cards/order \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "swype",
    "amount": 100,
    "email": "agent@example.com",
    "tickerFrom": "usdt",
    "networkFrom": "trc20"
  }'