Related Categories

Description: Shows related topic categories to help users refine their search.

API Response Structure:

{
  "title": "Related Categories",
  "categories": [
    {
      "title": "Category Name",
      "hasImage": true,
      "url": "https://example.com/category",
      "subCategories": [
        {
          "name": "Sub-category",
          "count": 150
        }
      ],
      "metrics": {
        "items": 1500,
        "popularity": "High"
      }
    }
  ],
  "type": "relatedCategories"
}

Fields:

  • title (string): Section heading

  • categories (array): Category listings

    • title (string): Category name

    • hasImage (boolean): Category image available

    • url (string): Category URL

    • subCategories (array): Related sub-categories

    • metrics (object): Category statistics

  • type (string): Always "relatedCategories"