Skip to main content

Create Your Shop

1

Sign Up

Create your free Shoppex account at dashboard.shoppex.io.You’ll receive a unique shop URL like yourshop.shoppex.io.
2

Configure Payment Gateway

Connect at least one payment provider in Settings → Payments:
  • Stripe - Credit cards, Apple Pay, Google Pay
  • PayPal - PayPal balance and cards
  • Crypto - Bitcoin, Litecoin, USDT
We recommend starting with Stripe for the best customer experience.
3

Create Your First Product

Go to Products → Create Product and fill in:
  • Product name and description
  • Price and currency
  • Delivery method (download, license key, or custom)
4

Test Your Checkout

Enable Test Mode in Settings and create a test invoice to verify everything works.Use these test card numbers:
CardNumber
Visa4242 4242 4242 4242
Mastercard5555 5555 5555 4444
Declined4000 0000 0000 0002

API Integration

Want to create invoices programmatically? Here’s a quick example:
const response = await fetch('https://api.shoppex.io/v1/invoices', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    customer_email: '[email protected]',
    products: [
      { product_id: 'prod_123', quantity: 1 }
    ],
    currency: 'USD'
  })
});

const invoice = await response.json();
console.log(invoice.checkout_url);

Next Steps