One eSIM that works across Europe — no roaming, no contract, no account. Buy with card or crypto and get your activation QR within minutes.
Keep a permanent eSIM after this trip — monthly renewal, optional US/UK numbers, and data top-ups. Separate checkout from this prepaid travel pass.
View Crypton MobileDifferent product and billing than Crypton Travel eSIM on this page.
Common questions before you buy.
Already have a session ID? Restore your session
eSIM Data Plans
Hopping between countries on one trip? A regional Europe eSIM is cheaper and simpler than buying a separate plan per country. One QR code, one balance, one bill — and the data works the moment you cross a border, with no roaming surcharge from the local carrier.
Our Europe plans are prepaid with no auto-renewal. Pick the data + days you need, pay with card via Stripe or with Bitcoin/Monero via BTCPay, and you're online within five minutes. No account is required: we only ask for an optional email so you get the receipt and activation QR as a backup.
No. Guest checkout means no signup, no password, no email verification. Drop an optional email at checkout if you want the receipt and activation QR mailed to you as a backup.
Card via Stripe (instant, no Tor), or Bitcoin and Monero via BTCPay (private, no KYC, works over Tor).
Most orders are provisioned in under 5 minutes. We email you the QR the moment our provider returns it — scan it once on your phone and you're on a local network.
Most phones from 2018 onward support eSIM: iPhone XS or newer, Pixel 3 or newer, Galaxy S20 or newer, and many others. If your phone supports eSIM you'll see "Add eSIM" or "Add cellular plan" in its mobile settings.
Open a support ticket from your eSIM page — we refund unused plans where the provider confirms the eSIM never activated. Plans that have been activated and consumed cannot be refunded.
Integrate Crypton Travel eSIM purchases into your applications
Our public API allows you to purchase Crypton Travel eSIM orders programmatically without authentication. Perfect for bots, automation, and integrations.
https://crypton.sh/api/v1/guest/esim
GET /plans 30 requests/minutePOST /checkout 10 requests/minuteGET /order/{uuid} 30 requests/minute/plans
List available Crypton Travel eSIM plans
/countries
List available countries
/checkout
Create a purchase
/order/{uuid}
Check order status
/refresh/{uuid}
Refresh eSIM usage
stripe - Card (Stripe) - Returns payment URLbtc - Bitcoin - Returns address & amountxmr - Monero - Returns address & amountThis API is designed for integration with messaging bots like OpenClaw and MoltBot. Create skills to let users purchase eSIMs directly from chat.
# Get available plans
curl https://crypton.sh/api/v1/guest/esim/plans
# Create checkout with Bitcoin
curl -X POST https://crypton.sh/api/v1/guest/esim/checkout \
-H "Content-Type: application/json" \
-d '{"package_id": "DE_1_7", "payment_method": "btc"}'
# Check order status
curl https://crypton.sh/api/v1/guest/esim/order/{order_uuid}