Skip to main content
Quickstart GuidesVerified Active (2026-09-06)

Quickstart Guide: Account Setup to First SKU Evaluation

Complete walkthrough from account creation to first evidence-grounded SKU evaluation in less than 5 minutes.

DDavid (Product Lead)
Published:
Updated:
4 min read

MeritSKU is engineered to evaluate product viability before you commit capital to inventory, packaging tooling, or ad campaigns. This guide walks through an end-to-end evaluation cycle in less than 5 minutes, demonstrating our deterministic landed cost math and fail-closed draft boundaries.

Cited Claim IDs:PUB-CLM-001PUB-CLM-004

1. Overview & Invariants

Unlike speculative market research tools that guess unit margins from scraping retail MSRP, MeritSKU ingests actual supplier price breaks, calculates complete integer minor-unit (cents) landed costs, and enforces strict governance over ad budget allocations.

Throughout this quickstart, all catalog pushes default strictly to draft status. MeritSKU will never publish a live listing to your storefront without an explicit human decision override.

Draft-Only Invariant Enforced

Platform integrations strictly inject listings with published_at: null. This fail-closed invariant prevents premature customer discovery before operational readiness.

2. Step 1: Submit Product Intake Payload

You can evaluate a candidate SKU either via the web interface or directly through our authenticated REST API v2. Provide the supplier factory quotation, package physical dimensions, and target selling price.

BASHintake-request.sh
curl -X POST https://api.meritsku.com/v2/skus \
  -H "Authorization: Bearer msku_live_mock_5a8f12c9b4e3" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Ergonomic Lumbar Support Cushion",
    "factoryUnitCostCents": 540,
    "targetRetailPriceCents": 3499,
    "weightGrams": 680,
    "dimensionsMm": { "length": 420, "width": 380, "height": 110 },
    "supplierCountry": "CN",
    "targetMarket": "US"
  }'

3. Step 2: Automated Evidence Extraction

Within 1,500ms, MeritSKU extracts and normalizes the 12 distinct landed cost factors. The system pulls current ocean/air spot freight rates, computes applicable customs tariffs (HTS Chapter 9404), and checks domestic 3PL fulfillment fees based on dimensional cubic volume.

Integer Minor-Unit Math

All financial computations are executed strictly in integer cents (e.g. 540 cents = $5.40). Floating-point arithmetic is banned to eliminate penny roundoff discrepancies.

4. Step 3: Inspecting MeritScore & Decision Verdict

The evaluation engine produces a single structured verdict: ADVANCE (Score >= 75), CAUTION (Score 50–74), or REJECT (Score < 50).

Alongside the 0–100 score, the engine computes an orthogonal confidence metric (0–100%) indicating the empirical completeness of supporting evidence.

MetricEvaluated ValueTarget ThresholdStatus
MeritScore84 / 100>= 75ADVANCE (Clear Winner)
Scoring Confidence92%>= 80%High Provenance
True Landed Cost$11.82 (1182¢)<= $14.00Passed
Breakeven CAC$23.17 (2317¢)>= $18.00Strong Buffer (66.2%)

5. Step 4: Pushing Draft to Commerce Store

When an evaluated product meets your margin criteria, clicking "Push to Store" pushes a complete draft listing (including SEO-optimized titles, feature bullet points, and mock pricing) directly to Shopify or WooCommerce.

Was this guide helpful?

Your feedback trains our editorial documentation standards.