Exports

The exports view shows the exports that have been generated for new pages. These are new topic exports and page candidates. Clicking a download link opens the export in Google Sheets unless it has more than 100,000 rows, in which case a CSV is downloaded instead.

Exports

The params field shows a summary of useful information about the topics.


{
  "file_url": "gs://similarai-exports/download_v3/prod/957/957_prod-product_feed_topics-2025-10-24_1761270311.csv",
  "top_label": {
    "clothing": 27952,
    "black": 10382,
    "clothing & accessories": 8648,
    "shirts & tops": 7624,
    "trousers": 6368,
    "white": 6244,
    "cotton": 5694,
    "blue": 5198,
    "trousers & jeans": 4200
  },
  "all": {
    "1": 8515,
    "2": 200748,
    "3": 1486776
  },
  "skipped": {
    "missing_positive_label_groups": 1119001,
    "duplicated_label_groups": 90584
  },
  "use": {
    "1": 933,
    "2": 48251,
    "3": 437270
  },
  "top_grammar": {
    "colour+style+category": 8315,
    "style+category": 8138,
    "style+colour+category": 7333,
    "brand+style+category": 6841,
    "style+material+category": 5675,
    "type+style+category": 4099,
    "category+style+type": 3885,
    "style+type+category": 3565,
    "category+colour+style": 3369,
    "attribute+style+category": 3361
  },
  "reorder": 2721055,
  "total": 486454,
  "total_has_volume": 42682,
  "has_volume": {
    "1": 827,
    "2": 19144,
    "3": 22711
  },
  "dryrun": false,
  "semrush_call_limit": 300000,
  "total_volume": 23967750,
  "params": {
    "positive_label_groups": [
      "category",
      "sub-category"
    ],
    "negative_label_groups": [],
    "max_keyword_count": null,
    "ngram_range": [
      1,
      4
    ],
    "dryrun": false
  }
}

Here the:

  • file_url shows the generated CSV, though it could also be a Google Sheet URL.
  • top_label key shows the most frequently used labels in this topic generation and in how many topics each appears.
  • all key shows which n-grams were used to generate topics. In this example, we used a unigram 8,515 times, a bigram 200,748 times, and a trigram 1.5 million times.
  • skipped key shows why we excluded topics. For example, some topics missed required label groups or had more than one of the same label group in a topic e.g. category + category.
  • top_grammars key shows the most popular grammars and how many topics use each.
  • reorder key shows the number of topics generated after ignoring the ordering of label groups in the grammar. We search for topics with search volume and select one without creating duplicates.
  • total shows all topics, and total_has_volume shows topics with search volume. Topics are counted as having search volume if they have 0+ monthly searches. Typically, only a few percent of total topics have search volume. The ngram breakdown for topics with search volume is also shown.
  • dryrun setting calculates the above totals without actually generating the topics.
  • total_volume shows the combined search volume across all topics.
  • params key lists the parameters used in the Generate Topics dialog.