Skip to main content
Getting Started/Quickstart

Quickstart

Go from zero to your first sale in under 10 minutes. This guide walks you through account creation, product setup, payment configuration, and store customization.

1

Create your account

Sign up at sellvy.io/register with your email or continue with Google. Your store URL is automatically generated from your username: yourname.sellvy.io

After registration, you will be taken to your dashboard where you can manage products, orders, and settings.

2

Add your first product

Navigate to Products in your dashboard sidebar and click New Product. Fill in the basics:

  • Title— Name your product (e.g., “Premium WordPress Theme”)
  • Price— Set your price in USD (or any supported currency)
  • Type— Choose between digital download, serial key, service, or subscription
  • Delivery— Upload your file or add serial keys to stock
3

Configure payments

Go to Settings → Payments to connect your payment processors. Sellvy supports:

Stripe
Credit/debit cards
SellvyPay
BTC, ETH, LTC, USDT, USDC, DOGE
PayPal
PayPal Friends & Family
CashApp
CashApp payments
4

Customize your store

Under Settings → Storefront, personalize your store appearance:

  • Upload your logo and banner
  • Choose a theme and accent color
  • Add a custom domain (optional)
  • Configure SEO metadata
5

Make your first sale

Your store is live! Share your store URL or product links. You can also use the API to integrate Sellvy into your existing workflow.

Grab your API key from Settings → API Keys to start automating:

const response = await fetch("https://api.sellvy.io/v1/products", {
  headers: {
    "Authorization": "Bearer sk_live_your_api_key",
    "Content-Type": "application/json"
  }
});

const products = await response.json();
console.log(products);

Next steps

Was this page helpful?