Travel eSIM — No Account Required

Pick a country or region and pay with card, Bitcoin or Monero. We email you the activation QR — usually in under 5 minutes — and you keep your home SIM untouched.

No Sign-up Required
Developer API
Country
Plan & Pay

Two ways to stay connected

Going on a trip
Pop-in eSIM data for your destination — pay once, no contract.
Switching providers
Permanent eSIM line — voice, SMS, and data on a real carrier.
from €5.00 activation Explore Crypton Mobile →

Already have a session ID? Restore your session

Crypton Travel eSIM

About our travel eSIMs

A travel eSIM lets you connect to local mobile data the moment you land — without swapping your physical SIM, without paying roaming, and without signing up to anything. You scan a QR code, your phone provisions the profile, and you're online. Most providers force you to create an account before you can buy. We don't: drop an optional email if you want a receipt and that's it.

We sell prepaid data plans across 190+ countries plus regional bundles for Europe, Asia, the Americas, Africa and Oceania. All plans are pay-as-you-go with no auto-renewal. You can top up later when you run out, or just buy a new one for your next trip. Payment options include card via Stripe (instant) and Bitcoin or Monero via BTCPay (private, no KYC).

Frequently asked questions

Do I need an account?

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.

How can I pay?

Card via Stripe (instant, no Tor), or Bitcoin and Monero via BTCPay (private, no KYC, works over Tor).

How fast does it activate?

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.

Is my phone compatible?

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.

What if it doesn't work?

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.

For Developers

Developer API

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.

Base URL
https://www.crypton.sh/api/v1/guest/esim
No API key required
Rate Limits
GET /plans 30 requests/minute
POST /checkout 10 requests/minute
GET /order/{uuid} 30 requests/minute
Endpoints
GET /plans List available Crypton Travel eSIM plans
GET /countries List available countries
POST /checkout Create a purchase
GET /order/{uuid} Check order status
POST /refresh/{uuid} Refresh eSIM usage
Payment Methods
stripe - Card (Stripe) - Returns payment URL
btc - Bitcoin - Returns address & amount
xmr - Monero - Returns address & amount
Bot Integration

This API is designed for integration with messaging bots like OpenClaw and MoltBot. Create skills to let users purchase eSIMs directly from chat.

Example Request
# Get available plans
curl https://www.crypton.sh/api/v1/guest/esim/plans

# Create checkout with Bitcoin
curl -X POST https://www.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://www.crypton.sh/api/v1/guest/esim/order/{order_uuid}