Where can i find all the tags that i have used in my site

Topic summary

The original poster seeks a way to view all tags used across their Shopify store.

Solutions provided:

  • Export products: Download the product CSV from Shopify (tags appear in the fifth column), then use spreadsheet functions to extract and sort unique values.

  • Direct JSON access: Visit https://example.myshopify.com/admin/products/tags.json in the admin panel to see all tags in JSON format.

  • Power Query method: Export products via Shopify or Matrixify, then use Excel’s Power Query to split tags by delimiters, trim whitespace, remove blanks/duplicates, and generate a clean unique tag list.

The discussion remains open with no confirmation of which solution the original poster adopted.

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

Is there any app or somewhere i can find all the tags i have used ?

Did you find a solution now?

2 Likes

When you export all of your products, the fifth column over is β€œtags”

Just export that, then you can split it, then run unique values for the entire range and add a sort to alphabetize. Bam.

1 Like

@Aggelos23 you can visit your admin now at https://example.myshopify.com/admin/products/tags.json to see all tags

2 Likes

Export your products via shopify or matrixify (the tags should be inside the exported file). Then

  1. Data β†’ Get Data β†’ From Text/CSV
    β†’ choose your CSV file and click Transform Data.
  2. In the Power Query window:
    • Select the column that contains the tags.

    • Go to Split Column β†’ By Delimiter.

    • Enter the delimiters , ; | and click Advanced options β†’ Split into Rows.

  3. Go to Transform β†’ Format β†’ Trim
    (this removes extra spaces).
  4. Go to Home β†’ Remove Rows β†’ Remove Blank Rows.
  5. Still under Home, choose Remove Duplicates.
  6. Finally, click Home β†’ Close & Load
    to load the unique tag list back into Excel.