On Shopify, every product is identified not just by its name, but by a unique Product ID. This number comes in handy for inventory management, reporting, and app integrations. Some Shopify apps even require you to enter a product ID before their features will work, so knowing how to find it matters.

The catch is that Shopify doesn’t display the Product ID anywhere in your product list in the admin panel.
So where do you actually find it?
This article walks through three ways to locate your Shopify Product ID.
1. Finding the Product ID from your storefront
Even if you don’t have access to the admin panel, you can still get the ID as long as you can reach the product page.
- Open any product page on your storefront
- Add
.jsonto the end of the URL
This returns the product’s data in JSON format, which includes the product.id field.
Example:
https://example.com/products/product-name.json
This method is handy because it works even without admin access.

2. Finding the Product ID from the admin panel (the easiest way)
If you can log into your Shopify admin, this is the quickest method.
- Go to Products and open any product
- Look at your browser’s URL bar
The number that appears right after /products/ in the URL is your Product ID.
Example:
https://admin.shopify.com/store/xxxx/products/1234567890→ 1234567890 is the Product ID
This is the simplest option and the easiest to remember.

3. Getting multiple Product IDs at once (useful for bulk management)
Opening each product individually just to check its ID gets tedious fast. That’s where pulling everything at once via variants.json comes in handy.
■ How to bulk-fetch Product IDs
- Log into your Shopify admin
- Add the following to the end of the URL:
/admin/variants.json
This returns every variant in your store (i.e., the data tied to each product) as a JSON list, letting you collect all the Product IDs at once.

■ Increasing the number of results returned
By default, Shopify only returns 50 items per page. To get more, add ?limit=250 to the URL.
Example:
https://admin.shopify.com/store/your-store/admin/variants.json?limit=250
You can retrieve up to 250 items at a time this way.
Summary: Finding your Shopify Product ID is easy
Here are the three ways to find a Shopify Product ID:
- Add
.jsonto a product page URL on your storefront - Open the product in the admin panel and check the number in the URL
- Use
variants.jsonto pull a full list of Product IDs at once
Pick whichever method fits your needs, and inventory management or app configuration becomes much smoother. Once you’ve got your Product IDs sorted out, you’re ready to take your store operations and data management even further.
