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.
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.
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
Configure payments
Go to Settings → Payments to connect your payment processors. Sellvy supports:
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
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
- • Read the Authentication guide to learn about API keys and rate limits
- • Set up Webhooks to receive real-time order notifications
- • Explore the Products API for programmatic product management