Shopify's Section Rendering API (What it is and how to get started)

March 28, 2025

Hey friends!

Today, we’re diving into Shopify’s Section Rendering API—a tool that’s becoming more and more essential for theme development. This API enables stores to update specific sections of their website without a full page reload, creating a smoother, more dynamic user experience. Think of it like the infinite scroll on Instagram or Facebook, where content loads seamlessly as you interact. In Shopify, this could mean updating the cart icon in real time when a customer adds a product or dynamically fetching product data for a product-comparison section.

So, if you are looking to learn about this API and leverage it in developing themes, this post is perfect for you. I’ll be breaking it all down:

  • What the Section Rendering API is and why it’s useful.
  • How it works behind the scenes with network requests.
  • How you can start get started in using the API
  • Real-world examples of its application

So, grab a coffee and let’s dive right in 🔥

What is Shopify’s Section Rendering API?

In a nutshell, the Section Rendering API lets you update specific sections on a Shopify store without refreshing the entire page. Pretty cool, right?

Updating the product quantity in cart
Updating the product quantity in cart

For example, let’s take Shopify’s default Dawn theme. When you update the quantity of an item in your cart, you’ll notice a few things change instantly: the cart total updates, the number of items in the cart adjusts, and even the cart icon in the header reflects the new count. And all of that happens without a full page reload.

Elements are updated without page reload
Elements are updated without page reload

How It Works: Behind the Scenes

To understand what’s going on, let’s open Chrome Developer Tools (right-click on the page > Inspect) and head over to the Network tab. This is where all the magic happens.

  1. Filter for Fetch and XHR Requests – This helps us see only the relevant requests.
  2. Change the Cart Quantity – Say we update an item from 5 to 8.
  3. Observe the Request – A request is sent to cart/change, which makes sense because we’re modifying the cart.
  4. Look at the Payload – This shows the data being sent. We’ll see things like:
    • The cart item we’re modifying
    • The new quantity (5 in our case)
    • A field called sections—which is where the Section Rendering API kicks in.
Viewing the request in the browser
Viewing the request in the browser

The sections array lists all the different sections that need updating. In our example, it included:

  • The cart items
  • The cart icon bubble
  • The live region text
  • The cart footer

Getting the Response

The sections in the request response
The sections in the request response

Once the request is sent, the server then responds with structured data, including HTML for each updated section. This is found in the Response tab. This means we can take that new HTML and replace the existing elements on the page, effectively updating the page. How cool is that? 🙌

Recap

In a nutshell, with the Section Rendering API, we:

  1. Request specific sections from the API.
  2. Get back the updated HTML from Shopify.
  3. Swap out the old elements with the new ones.

How To Start Using the Section Rendering API

In the simplest way possible, here is how you can get started with using the Section Rendering API:

  1. Open Developer Tools and go to the Console tab.
  2. Make the Fetch Request:

To fetch a single section, we’ll use the code below:

fetch('/?section_id=section-id');

However, if you want multiple sections, use sections (plural) instead and separate each section-id with a comma:

fetch('/?sections=section-id-1,section-id-2');

For example, in the Dawn theme, in order to request the cart-icon-bubble section, we use the code below and hit enter:

fetch('/?section_id=cart-icon-bubble');
  1. Check the Response:

Head over to the network tab and you’ll find the request we just made. Clicking on this request, we see the information related to the request. And in the response tab, we see the HTML of the requested section.

HTML Section from our fetch request
The section HTML from our fetch request
  1. Updating our page

Now with this response, we can then replace the HTML of our old section with the new one. And that’s it! That is how you can get started in using the Section Rendering API.

Now, Why Is This a Big Deal?

First, let’s take a step back – Why should you care about this API?

Shopify’s Liquid language only works before a page loads. It’s a server-side templating language, which means that all Liquid code is executed on the server side and no Liquid code ever reaches the browser. On top of that, you won’t be able to use Liquid to react to user interactions, such as updating the cart icon whenever a customer adds a product to cart.

JavaScript, on the other hand, runs after the page loads and is perfect for responding to user actions, like button clicks. However, JavaScript alone can’t re-run Liquid code to update server-side data dynamically.

This is where the Section Rendering API comes in. It bridges the gap by allowing us to re-execute Liquid code dynamically after the page has loaded—something that wasn’t possible before. With this API, we can update content in real time, making Shopify themes far more interactive and efficient.

What are some real-world use cases of the Section Rendering API?

Although the sky is the limit here, here are some real-world examples of where you can use the Section Rendering API:

  1. Product Comparisons – Fetch and display different product details dynamically.
  2. Variant Selection – Shopify now uses this method for updating product details when selecting different variants.
  3. Cart Updates – As we saw earlier, it enables real time cart updates without having to reload the page.

Wrapping Up

Alright, I hope that was a solid intro to Shopify’s Section Rendering API! To recap, we covered:

  • What the Section Rendering API is and why it’s useful.
  • How the API works behind the scenes.
  • How you can get started in using the API
  • Some real-world examples of its application.

I hope this gave you a good starting point. And hey, if you’re new to working with APIs or JavaScript in Shopify, check out my JavaScript Mastery Training—it's one of the best trainings I've designed to this date and it’ll save you a ton of time learning the JavaScript side of Shopify and help you level up as a developer.

Thanks for reading, happy coding, and I’ll catch you in the next one! ✌️

developer training

Interested in working together?

Start Here