Can I vibe code Narvar?
narvar.com ↗·returns·$185/mo·usage
KEEP — THE UI ISN'T THE MOAT
Narvar is an enterprise monolith charging an average contract value of $37,440/year (with recent shifts to $1.85-$3.40 per-resolution pricing) for post-purchase tracking, notifications, and return workflows. For small-to-mid-market brands, the core utility of Narvar—rendering branded shipment tracking timelines and self-serve return label generation—can be completely replaced using open-source tools or lightweight APIs like EasyPost, Shippo, and Shopify GraphQL. What Narvar actually sells at the enterprise level is not code; it is physical operations, including contracts with drop-off networks (Happy Returns, FedEx/UPS drop-off concierges), complex enterprise ERP integrations (SAP, Oracle, Manhattan Associates), ML-driven fraud detection (Narvar Shield), and high-throughput SLA guarantees. Rebuilding the UI and return logic takes days; replacing their physical drop-off footprint and enterprise ERP connectors takes years.
The verdict
KEEPReplaces
$3,120/mo
Vibe code score
3/10
MVP build time
1-2 weeks
Full replacement
12-18 months
Editorial opinion, produced with a published methodology from public information. Not a statement of fact about the vendor. How we score · Report an error · Pricing checked 2026-08-04
01
Why this verdict
Building the tracking UI and self-serve return logic with AI takes under two weeks using carrier APIs like EasyPost. However, replacing Narvar's enterprise footprint means losing native drop-off location networks, deep ERP integrations, and global carrier contracts.
Verdict
KEEP
Vibe code score
3/10
Moat strength
6/10
02
What it really costs
Sticker price versus what a real store ends up paying.
| Returns Per-Resolution | $2/mo | $1.85 to $3.40 per resolved return depending on outcome (refund vs exchange) and carrier complexity |
| Mid-Market Post-Purchase | $3,120/mo | Estimated typical contract (~3,000 orders/mo or ~500 returns/mo plus tracking & notify) |
| Enterprise Post-Purchase Suite | $4,083/mo | High-volume retailers handling 100k+ returns/yr. Full tracking, return concierge, fraud detection. |
No public self-serve pricing. Transitioned to per-resolution pricing ($1.85-$3.40/return) in 2026. Custom enterprise annual contracts average ~$37.4k/yr.
- Captured
- 2026-08-04 (51 days ago)
- Verified by
- crawler
- Source
- narvar.com
Assumptions: No public self-serve pricing. Transitioned to per-resolution pricing ($1.85-$3.40/return) in 2026. Custom enterprise annual contracts average ~$37.4k/yr.
03
The one-shot build prompt
Paste it into your agent of choice. Nothing else needed.
Build a production-ready post-purchase order tracking and self-serve returns application for Shopify using Next.js (App Router), TypeScript, Tailwind CSS, Shopify Admin GraphQL API, and the EasyPost Node SDK.
CORE DATA MODEL & STATE
Implement SQLite via Prisma with the following schema:
- Merchant: id, shopifyDomain, accessToken, easyPostApiKey, returnPolicyDays (default 30).
- ReturnRequest: id, orderId, lineItems (JSON), reason, outcome ('REFUND' | 'EXCHANGE' | 'STORE_CREDIT'), status ('REQUESTED' | 'LABEL_GENERATED' | 'IN_TRANSIT' | 'RECEIVED' | 'COMPLETED' | 'REJECTED'), trackingCode, labelUrl, qrCodeUrl, refundAmount, createdAt.
- ShipmentTracker: id, orderId, easyPostTrackerId, carrier, trackingNumber, status ('pre_transit' | 'in_transit' | 'out_for_delivery' | 'delivered' | 'failure'), estimatedDelivery, statusDetails (JSON).
1. BRANDED ORDER TRACKING PORTAL (/track)
- Public end-user page accepting Order ID/Number and Customer Email.
- Query Shopify GraphQL API (Admin API) to fetch order fulfillment status, line items, and tracking numbers.
- Query EasyPost API for real-time tracking events. Render a visual timeline matching status stages: Order Placed -> Carrier Processing -> In Transit -> Out for Delivery -> Delivered.
- Handle carrier exception flags (e.g., failed delivery, address check required) with dedicated UI alert boxes.
2. SELF-SERVE RETURNS & EXCHANGES PORTAL (/returns)
- End-user authentication via Order ID and Email/Postal Code.
- Fetch eligible return line items. Enforce rules:
a. Reject items purchased outside the `returnPolicyDays` window.
b. Filter out non-returnable tags (e.g., 'Final Sale').
- Return outcome workflows:
a. Refund: Calculate estimated refund based on item cost minus return shipping fee ($5.00 flat deduction).
b. Exchange: Query Shopify Product API for alternate size/color variants of same product. Create a Shopify Draft Order for the replacement item.
c. Store Credit: Offer 10% bonus credit if customer chooses gift card over original payment method refund.
- Return Label Generation: Trigger EasyPost API (`easypost.Shipment.create`) using merchant's return address and customer destination address. Generate a prepaid shipping label PDF and QR code. Save `labelUrl` and update `ReturnRequest`.
3. WEBHOOK HANDLING (/api/webhooks/easypost)
- Secure webhook endpoint processing EasyPost shipment update events.
- On `tracker.updated`: Update `ShipmentTracker` and trigger email notification via Resend API when status changes to 'out_for_delivery' or 'delivered'.
- On Return Shipment `delivered`: Automatically trigger Shopify Refund GraphQL mutation (`returnCreate` and `refundCreate`) or issue Shopify Gift Card depending on `ReturnRequest.outcome`.
FAILURE MODES TO HANDLE:
- Invalid carrier tracking codes or unsupported regional carriers: Fallback to standard Shopify tracking URL.
- EasyPost API rate limits or label creation failure: Capture error, mark `ReturnRequest` as `MANUAL_REVIEW`, and email merchant support team.
OUT OF SCOPE:
- Physical drop-off location mapping/QR code scanning at retail counters.
- Advanced ML return fraud scoring or physical warehouse receipt inspection tools.$ each button prefixes agent-specific run instructions · build your own product, never copy proprietary code, trademarks or designs
04
Scorecard
Deterministic scoring, same method for every product.
Vibe code score
3/10
Moat strength
6/10
05
What you keep, what you lose
The honest trade of rebuilding it yourself.
What you can actually replace
- ✓"Branded order tracking pages with carrier status timelines.",
What you lose
- ×"Access to Narvar Concierge (box-free, label-free physical drop-off locations across 200,000+ partner stores).",
06
Why people still pay — the real moats
Moats
- — "Contractual partnerships with physical return drop-off networks (Happy Returns, Kohl's, FedEx/UPS retail locations).",
Hard parts
- — "Handling multi-carrier tracking webhook normalizations across hundreds of international carriers with varying status payload formats.",
- — "Negotiating and maintaining direct carrier integrations and volume-discounted API rates across global postal services.",
Network effects you cannot generate
- — "Narvar Concierge physical drop-off location network (200,000+ locations via FedEx, UPS, Happy Returns partnership ecosystem).",
Build this instead
Drop-in Label Generator for Shopify
Skip expensive carrier API accounts. Connect a merchant's Shippo or EasyPost API key to render a self-serve returns portal on Shopify storefronts that generates QR drop-off codes or pre-paid PDF return shipping labels directly in the customer browser.
Build this instead
Exchange-First Returns Flow
An automated workflow engine that converts requested refunds into store credit or instant variant swaps by issuing Shopify Gift Cards or Draft Orders before generating return labels, reducing refund cash leakage without complex enterprise contracts.
Build this instead
Headless Post-Purchase Tracking Page
A webhook-driven engine that aggregates webhooks from EasyPost/AfterShip and writes standardized shipping timeline events directly to Shopify Metafields, letting merchants render fully custom tracking pages via Liquid without third-party iframe JavaScript dependencies.
07
Prior art — do not start from zero
Existing projects and paid alternatives worth pricing first.
OpeneBS / Shipping-APIs↗
Open-source shipping API library and web application supporting multiple carrier integrations.
github.com
EasyPost Node Client↗
Multi-carrier shipping API for tracking, label creation, and return logistics.
github.com
Medusa.js↗
Open-source e-commerce framework with built-in return management logic.
github.com
08
Open source alternatives to Narvar
Self-hostable projects that cover most of the same ground. Free licence, your infrastructure, your on-call.
09
Have you actually replaced it?
One click, no account. It moves the ranking.
10
Compare
Same category, different trade-offs.
Corso provides package protection against lost, stolen, or damaged items along with carbon offset contributions and return management at checkout.
$49/mo
Happy Returns is a returns management portal backed by UPS's nationwide Return Bar network for box-free, label-free physical drop-offs.
$500/mo
PostCo provides branded self-service return portals, exchange workflows, and automated shipping label generation with a focus on APAC regional carriers.
$149/mo
11
FAQ
+Can I really replace Narvar with an AI-generated app?
NOT REALLY — UI IS TRIVIAL, DROP-OFF NETWORKS ARE NOT. Building the tracking UI and self-serve return logic with AI takes under two weeks using carrier APIs like EasyPost. However, replacing Narvar's enterprise footprint means losing native drop-off location networks, deep ERP integrations, and global carrier contracts. An MVP takes roughly 1-2 weeks; matching the product properly is closer to 12-18 months.
+How long does it take to rebuild Narvar?
A usable internal version: 1-2 weeks. A version you would sell or bet a business on: 12-18 months, mostly spent on "handling multi-carrier tracking webhook normalizations across hundreds of international carriers with varying status payload formats.",.
+What do you actually lose by leaving Narvar?
"Access to Narvar Concierge (box-free, label-free physical drop-off locations across 200,000+ partner stores).",
+Is it legal to build a Narvar alternative?
Building a competing product with your own code is normal competition. Copying their code, trademarks, brand assets or scraping their platform is not. Use the prompt to build your own implementation of common features.
Written by Andrea Saccà — 18 years in the Magento ecosystem. Last reviewed 2026-08-04.
Scores are computed, not typed. Read the methodology.
One e-commerce SaaS teardown every week.
Honest verdicts, build prompts and overlooked vertical SaaS opportunities. No tracking pixels, no drip sequence, unsubscribe in one click.
free forever · no third-party tracking · the prompts stay public