How to get product ID and variant ID with bulk editor

Topic summary

Users seek methods to export product IDs and variant IDs from Shopify, which the native bulk editor and standard product export don’t include by default.

Proposed Solutions:

  • Third-party apps: Excelify and EZ Exporter can export product/variant data including IDs (some offer free trials)
  • JSON API method: Access /admin/variants.json with parameters like ?fields=id,product-id,title&limit=250, then convert JSON output to CSV using online converters. Note: Shopify deprecated page-based pagination in favor of cursor-based pagination (API version 2019-07+)
  • PHP scripts: Custom code snippets provided to programmatically fetch product/variant IDs via Shopify API (requires API credentials and PHP server)
  • Built-in Analytics workaround: Navigate to Analytics > Reports > ABC Analysis by Product, customize columns to show IDs, then export
  • Command-line tools: shopify_id_export program combined with xsv for merging exports
  • Google Merchant export: Product IDs appear in the “id” field when exporting from Google Merchant Center

Limitations:

  • Analytics reports only show last 28 days of data
  • JSON method requires technical knowledge and handling pagination
  • Many users express frustration that this basic functionality isn’t natively available in Shopify’s standard export feature

The discussion remains active with users sharing various technical and non-technical approaches, though no single definitive solution exists without third-party tools or custom development.

Summarized with AI on October 25. AI used: claude-sonnet-4-5-20250929.

I am trying to get the ID of the products and variant to create a mini excel spreadsheet. Is there anyway to grab these products IDs from the bulk editor? How do I do it?

1 Like

Hi, Charles!

I am not sure if you are open to an app suggestion, but if you are - use the Excelify app to export your products and variants data to Excel - that will include also ID and Variant ID fields.

https://apps.shopify.com/excel-export-import

Maris

You can use shopify product id to read json and get product is and sku using below code :

<?php ini_set('max_execution_time', 0); // for infinite time of execution for($i= 1 ;$i<26; $i++){ $pageurl = 'https://apikey:password@your-store.myshopify.com/admin/products.json?limit=250&page='.$i; $data = json_decode(file_get_contents( $pageurl),true); if(!empty($data['products'])){ foreach($data['products'] as $product){ $csv_data[] =array( 'Product ID '=>$product['id'], 'Sku'=>$product['variants'][0]['sku'] ); } } } if(!empty($csv_data)){ outputCsv('get-products-id.csv', $csv_data); } function outputCsv($fileName, $assocDataArray) { ob_clean(); header('Pragma: public'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Cache-Control: private', false); header('Content-Type: text/csv'); header('Content-Disposition: attachment;filename=' . $fileName); if(isset($assocDataArray['0'])){ $fp = fopen('php://output', 'w'); fputcsv($fp, array_keys($assocDataArray['0'])); foreach($assocDataArray AS $values){ fputcsv($fp, $values); } fclose($fp); } ob_flush(); } ?>
2 Likes

I am thinking to get around this issue as well. Basically, all I want is to include the product id and variant id of the products from the regular Shopify product export feature. And we are not going to use Excelify so that means I have to depend on the Shopify product export. It looks like a very straightforward request that Shopify product export should already have. Is there any free app that can include the product id and variant or maybe some other way within Shopify itself?

6 Likes

I just used EZ Exporter under the 7-day trial & it pulls down the 2 columns you mentioned in under 5 minutes for 210 products. Mine is just a quick fix, but it fits the bill. Has integration options if this is useful to you. Cheers, M

https://apps.shopify.com/ez-exporter?utm_campaign=installed&utm_content=contextual&utm_medium=shopify&utm_source=admin

1 Like

You can use shopify product id to read json and get product is and sku using below code

Thank you for this code. Helped to solve my problem with exporting of ID’s.

I’d like to use this code, and I understand I need to copy and paste it and update the API key. My question is, where do I copy and paste it TO? Thanks

1 Like

Thanks for the code above, it worked for me with some modification. If you have a webserver with php installed, you run the php from there.

My main modification to the script above is getting all the variants instead of the first variant.

$fn1 = ‘db/products_id.csv’; // output file
if (file_exists($fn1)) {
rename($fn1, rtrim($fn1, “.csv”) . date(“ymdHi”) . “.csv”) ; // rename file
}
ini_set(‘max_execution_time’, 30000); // 0 for infinite time of execution
$m = NULL ; // counter
$api_key = ‘yourkey’ ;
$pw = ‘your_password’ ;
$store = ‘storename’ ;
$n_per_page = 250; // number of item per page
for($i= 1 ; $i< 25; $i++){ // number of pages
$pageurl = ‘https://’ . $api_key . ‘:’ . $pw . [email removed] . $store . ‘.myshopify.com/admin/products.json?limit=’ . $n_per_page . ‘&page=’.$i;
$data = json_decode(file_get_contents( $pageurl),true);
echo count($data[‘products’]) . ’ data size
';
if(!empty($data[‘products’])){
foreach($data[‘products’] as $product){
foreach($product[‘variants’] as $variant){
$csv_data = array(‘Product_ID’=>$product[‘id’],
‘Variant_ID’=>$variant[‘id’],
‘Sku’=>$variant[‘sku’]);
++$m;
}
}
}
}
if(!empty($csv_data)){
$fh1 = fopen($fn1, “w”) or die(“Unable to open file! L#”. LINE . " " . $fn1);
// $fh1 = fopen(‘php://output’, ‘w’);
fputcsv($fh1, array_keys($csv_data[‘0’]));
foreach($csv_data as $row){
fputcsv($fh1, $row);
}
fclose($fh1);
}

echo 'Number of Product Exported = ’ . $m . ‘
’ ;

I found this link which was easy to implement, free and provided what was required: https://support.rechargepayments.com/hc/en-us/articles/360009746154-Finding-and-exporting-Shopify-variant-IDs. In case the article is taken down at some stage here are the key details. My URL ended up looking like this https://shopname.myshopify.com/admin/variants.json?fields=id,product-id,title&limit=250&page=6 as I had 6 pages worth of product variants.

Using the JSON URL in Shopify to find variant IDs

Start by adding /admin/variants in your Address Bar following your Shopify URL when logged into your Shopify Dashboard. It should look like this:

https://examplerechargestore.myshopify.com/admin/variants

Add .json to the end of the URL following variants:

https://examplerechargestore.myshopify.com/admin/variants**.json**

Once the URL is loaded, you should see variant data populated in JSON format on the next screen.


Modifying JSON URL for more options

You can modify it by adding ?fields=id,product-id,title to show you only the variant ID, product ID, and variant title:

https://examplerechargestore.myshopify.com/admin/variants**.**json**?fields=id,product-id,title**

You can modify it further by adding &limit=250 to make sure the view presents all products in your catalog:

https://examplerechargestore.myshopify.com/admin/variants**.**json?fields=id,product-id,title**&limit=49**

If you have more than 49 variants, you will need to append page designations such as &page=2 until all products are accounted for in the JSON view. This is based on Shopify’s API limit.


Copying and exporting JSON data

Once all variant information is in view, you can copy and paste the JSON data into a free online JSON to CSV converter tool such as JSON to CSV Converter. This will aggregate the data and provide a CSV file with the information organized in columns. You’ll need to get the product titles separately and map them to the correct row in the CSV file using the product ID column.


Alternate method - Finding the variant ID using the cart.js

Alternatively, when the product is added to the cart, you can find the variant ID by adding .js to the end of the cart page URL.

The URL would then look like this: www.website.com/cart.js.

When .js is added at the end of the cart page URL it automatically opens a new window with line-item properties of the product currently in the cart. Variant iD can then be filtered out of all the line item properties present on that page.

1 Like

We have a command-line program that exports various product and variant ids to a CSV or to a customizable JSON format.

Hey,

I found the best way to get product ID in bulk. We can simply export products from Google Merchant. The “id” field in it has the product ID.

Rahul3007_0-1606062564859.png

4347322466422

This is the product ID

3 Likes

It’s been since 2018 and there isn’t a way to export ID’s?? Why do we need an app or code to do such a straightforward task? Shopify support, please add this as a feature; it’s pretty straightforward.

6 Likes

Not sure if anyone’s still looking for a solution but I finally found one!

  1. Go to analytics > reports
  2. Under inventory click ABC analysis by Product
  3. Edit the columns to show IDs or whatever info you need
  4. Export

Hope this helps

20 Likes

es wird nur fĂźr die letzte 28 Tagen die Daten angezeigt, d.h. Das du nur ein Teil der Daten bekommst.

Hilft es nicht. =(

Hey @Dean_Kara ,

thanks for your clarifications. I try to do the same here to export my variants together with the ID + SKU. As per https://mokebo.myshopify.com/admin/variants/count.json we have over 600 Variants to export which would be 3 API calls, however if im inserting "https://mokebo.myshopify.com/admin/variants.json?limit=250&page=1" i´m getting an error message:

"{

}"

Can you explain whats happening?

Philip

OMG, you have the most simplest solution! You rock!

Show More

Hi Guys, i didn´t get any response to my question above. We have more then 250 variants we want to JSON export but the URL in the way the documentation tells it is just not working. thats what i´m trying:

https://XXXX.myshopify.com/admin/variants.json?fields=id,sku,product-id,title&page=2

and thats what the results says:

“page: “page cannot be passed. See https://shopify.dev/api/usage/pagination-rest for more information.””

any idea what´s wrong?

The page parameter is not supported in the API version you are using. If you follow the link in the error you will see:

Cursor-based pagination is supported only in version 2019-07 of the API and above. It replaces page-based pagination for the endpoints listed below.

The link contains information on how to use cursor-based pagination instead of page.

I would recommend use the program I mentioned earlier to export your IDs.

Worked great!! Thank you for sharing!! New to Shopify and needed this data for bringing stuff in from our old site. You rock!