Skip to main content
All CollectionsUpCart Public API
Getting Started with UpCart's Public API
Getting Started with UpCart's Public API

Learn how to get started with UpCart's API, add scripts, test changes, and customize your cart with ease.

Updated over 2 months ago

Overview

UpCart’s Public API UpCart’s Public API lets you customize your cart, automate workflows, and integrate with third-party apps—whether you're a developer or just getting started. This guide will walk you through the basics and help you get started to using our API.


What You Need to Get Started

Before using UpCart’s API, make sure you have:

  • Access to UpCart in your Shopify store – Ensure UpCart is installed and active.

  • A basic understanding of JavaScript – Many customizations work with pre-written scripts, but knowing basic JavaScript helps with advanced edits.


Adding Your First UpCart API Script

  1. To add a script, go to: UpCart Editor → Settings → Custom HTML → Scripts (before load).

  2. Test if scripts are working by adding this example using the API:

    • <script>
      window.upcartOnAddToCart = (id, quantity, item) => {
      console.log("You just added " + item.title + " to your cart!");
      };
      </script>

  3. Save your changes, then test in your store:

    • Open Dev Tools (F12 or Ctrl + Shift + J on Windows, Cmd + Option + J on Mac).

    • Add a product to your cart.

    • Go to the Console tab and look for "You just added product title to your cart!".


Start Customizing Your Cart

Now that you’re set up, explore our UpCart API Documentation for all available functions and examples:

More Resources:

Did this answer your question?