Skip to main content

Build with Shoppex

Everything you need to sell digital products, software licenses, and subscriptions. Accept payments globally with Stripe, PayPal, and crypto.

Choose Your Integration


Quick Start

1

Get your API key

Go to Dashboard → Settings → API and create an API key.
2

Create a payment

curl -X POST https://api.shoppex.io/dev/v1/payments \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title": "Order #123", "email": "[email protected]", "value": 29.99, "currency": "USD"}'
3

Redirect to checkout

Use the returned url to send your customer to the hosted checkout page.
4

Handle webhooks

Listen for order:paid to fulfill orders automatically.

Full Quickstart Guide

Step-by-step setup with test credentials and code examples

Core Concepts


Upload files to your product, and Shoppex delivers them automatically after payment. Supports any file type up to 5GB.Learn more →
Add license keys to your product (one per line), and each customer receives a unique key. Perfect for software sales.Learn more →
Create invoices via API, redirect customers to our hosted checkout, and listen for webhooks to fulfill orders in your system.Learn more →
Set up recurring products with monthly or yearly billing. Handle trials, upgrades, and cancellations automatically.Learn more →

API Resources


Get Help