Enter your API key to access your dashboard.
Don't have an account? Register here
Required columns: name, price, url
Optional: description, currency, image_url, sku, category, brand
Paste a JSON array of products.
| Name | Price | Category | SKU | URL |
|---|---|---|---|---|
| No products uploaded yet | ||||
curl -X POST /api/products/upload \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@products.csv"
curl -X POST /api/products/json \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"products": [{"name": "...", "price": 29.99, "url": "https://..."}]}'
curl /api/products/mine -H "X-API-Key: YOUR_API_KEY"