{"id":14719,"date":"2026-02-19T22:25:48","date_gmt":"2026-02-19T16:55:48","guid":{"rendered":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/"},"modified":"2026-03-02T13:33:06","modified_gmt":"2026-03-02T08:03:06","slug":"ai-json-feed","status":"publish","type":"docs","link":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/","title":{"rendered":"AI JSON Feed"},"content":{"rendered":"\n<p>The AI JSON Feed is a new feature in version 3.6.0. It provides a structured, machine-readable representation of your product catalog optimised for AI-powered search engines, large language models (LLMs), and discovery platforms that power the next generation of search.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>To understand <em>why<\/em> this matters, see [AI Feed \u2014 The Future of SEO].<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">AI Feed Settings<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Setting<\/th><th>Default<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><strong>Enable AI JSON Feed<\/strong><\/td><td>Off<\/td><td>Master switch. When enabled, the feed index is accessible at <code>\/ai_feed_index.json<\/code> (with .htaccess) or via the route URL.<\/td><\/tr><tr><td><strong>AI Feed Limit per Page<\/strong><\/td><td>1000<\/td><td>Products per feed page. The AI feed includes full product data, so lower limits = smaller, faster response files. Recommended: 500\u20131000.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">AI Feed URL Structure<\/h2>\n\n\n\n<p>The AI feed uses a two-level URL structure:<\/p>\n\n\n\n<p><strong>Feed Index URL<\/strong> \u2014 A single JSON file listing all feed pages for all languages. This is the entry point for crawlers.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>With .htaccess:   https:\/\/yourstore.com\/ai_feed_index.json\nWithout .htaccess: https:\/\/yourstore.com\/index.php?route=extension\/hbseo\/ai_feed<\/code><\/pre>\n\n\n\n<p><strong>Feed Page URLs<\/strong> \u2014 Individual paginated JSON files, one per language per page.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>With .htaccess:   https:\/\/yourstore.com\/ai-feed\/en\/ai_product_feed_1.json\nWithout .htaccess: https:\/\/yourstore.com\/index.php?route=extension\/hbseo\/ai_feed\/feed&amp;page=1<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">What Each Feed Page Contains<\/h2>\n\n\n\n<p>Each feed page is a JSON object with:<\/p>\n\n\n\n<p><strong>Metadata fields:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>store_id<\/code> \u2014 OpenCart store ID<\/li>\n\n\n\n<li><code>store_url<\/code> \u2014 Store base URL<\/li>\n\n\n\n<li><code>language_code<\/code> \u2014 Language of this feed page (e.g., <code>en<\/code>, <code>fr<\/code>)<\/li>\n\n\n\n<li><code>total_products<\/code> \u2014 Total product count across all pages<\/li>\n\n\n\n<li><code>page<\/code> \u2014 Current page number<\/li>\n\n\n\n<li><code>limit<\/code> \u2014 Products per page<\/li>\n\n\n\n<li><code>total_pages<\/code> \u2014 Total number of feed pages<\/li>\n\n\n\n<li><code>generated_at<\/code> \u2014 ISO 8601 timestamp of generation<\/li>\n<\/ul>\n\n\n\n<p><strong><code>products<\/code> array \u2014 one entry per product:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Field<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code>product_id<\/code><\/td><td>Internal OpenCart product ID<\/td><\/tr><tr><td><code>url<\/code><\/td><td>Full canonical product page URL<\/td><\/tr><tr><td><code>name<\/code><\/td><td>Product name (HTML entities decoded)<\/td><\/tr><tr><td><code>description<\/code><\/td><td>Plain-text description (HTML stripped, truncated to 320 characters)<\/td><\/tr><tr><td><code>price<\/code><\/td><td>Regular price as a float<\/td><\/tr><tr><td><code>special<\/code><\/td><td>Special\/sale price as a float (<code>null<\/code> if no sale)<\/td><\/tr><tr><td><code>currency<\/code><\/td><td>Store currency code (e.g., <code>USD<\/code>, <code>EUR<\/code>)<\/td><\/tr><tr><td><code>manufacturer<\/code><\/td><td>Brand\/manufacturer name<\/td><\/tr><tr><td><code>category_hierarchy<\/code><\/td><td>Array of category paths from root to product<\/td><\/tr><tr><td><code>stock_status<\/code><\/td><td><code>\"In Stock\"<\/code> \/ <code>\"Out Of Stock\"<\/code> or custom stock status label<\/td><\/tr><tr><td><code>last_updated<\/code><\/td><td>ISO 8601 timestamp of last product modification<\/td><\/tr><tr><td><code>importance_score<\/code><\/td><td><em>(Smart SEO Mode only)<\/em> Float 0.7\u20131.0 representing product importance<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">robots.txt Recommendations<\/h2>\n\n\n\n<p>Add these lines to your <code>robots.txt<\/code> to help AI crawlers discover both feeds:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Sitemap: https:\/\/www.yourstore.com\/sitemap_index.xml\nSitemap: https:\/\/www.yourstore.com\/ai_feed_index.json<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Adding AI Feed to Custom Links Sitemap<\/h2>\n\n\n\n<p>For maximum discoverability, add your AI feed index URL to the <strong>Custom Links<\/strong> section so it appears in your XML sitemap index. This ensures legacy crawlers that only follow <code>sitemap.xml<\/code> files can also find the AI feed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Multi-Language Support<\/h2>\n\n\n\n<p>If your store has multiple languages, the AI feed automatically generates separate feed pages for each active language. The feed index lists all languages with their page URLs.<\/p>\n\n\n\n<p>To request a single language, append <code>?hbxmllang={code}<\/code> to the feed index URL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;yourstore.com\/ai_feed_index.json?hbxmllang=fr<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Admin Panel \u2014 Feed Links Display<\/h2>\n\n\n\n<p>The Dashboard tab shows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>AI feed pagination summary<\/strong> \u2014 total products, products per page, total feed pages<\/li>\n\n\n\n<li><strong>Language-wise AI feed URLs<\/strong> \u2014 links to the first few feed pages per language<\/li>\n<\/ul>\n\n\n\n<p>The admin panel reads the live feed index to display these links, so you can verify the feed is working without leaving the admin.<\/p>\n","protected":false},"featured_media":0,"parent":245,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","doc_tag":[],"class_list":["post-14719","docs","type-docs","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AI JSON Feed - HuntBee Resources<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AI JSON Feed - HuntBee Resources\" \/>\n<meta property=\"og:description\" content=\"The AI JSON Feed is a new feature in version 3.6.0. It provides a structured, machine-readable representation of your product catalog optimised for AI-powered search engines, large language models (LLMs), and discovery platforms that power the next generation of search. To understand why this matters, see [AI Feed \u2014 The Future of SEO]. AI Feed [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/\" \/>\n<meta property=\"og:site_name\" content=\"HuntBee Resources\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/huntbee.opencart\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-02T08:03:06+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/ai-json-feed\\\/\",\"url\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/ai-json-feed\\\/\",\"name\":\"AI JSON Feed - HuntBee Resources\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#website\"},\"datePublished\":\"2026-02-19T16:55:48+00:00\",\"dateModified\":\"2026-03-02T08:03:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/ai-json-feed\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/ai-json-feed\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/ai-json-feed\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"XML Sitemap Generator + AI Feed JSON + IndexNow PRO\",\"item\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/docs\\\/seo-xml-sitemap-generator-pro\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"AI JSON Feed\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/\",\"name\":\"HuntBee Resources\",\"description\":\"OpenCart Extension Documentations - Guides - Blogs - Projects\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#organization\",\"name\":\"HuntBee OpenCart\",\"url\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-mobile-logo-new.png\",\"contentUrl\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-mobile-logo-new.png\",\"width\":945,\"height\":200,\"caption\":\"HuntBee OpenCart\"},\"image\":{\"@id\":\"https:\\\/\\\/www.huntbee.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/huntbee.opencart\",\"https:\\\/\\\/www.instagram.com\\\/opencart.huntbee\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AI JSON Feed - HuntBee Resources","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/","og_locale":"en_US","og_type":"article","og_title":"AI JSON Feed - HuntBee Resources","og_description":"The AI JSON Feed is a new feature in version 3.6.0. It provides a structured, machine-readable representation of your product catalog optimised for AI-powered search engines, large language models (LLMs), and discovery platforms that power the next generation of search. To understand why this matters, see [AI Feed \u2014 The Future of SEO]. AI Feed [&hellip;]","og_url":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/","og_site_name":"HuntBee Resources","article_publisher":"https:\/\/www.facebook.com\/huntbee.opencart","article_modified_time":"2026-03-02T08:03:06+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/","url":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/","name":"AI JSON Feed - HuntBee Resources","isPartOf":{"@id":"https:\/\/www.huntbee.com\/resources\/#website"},"datePublished":"2026-02-19T16:55:48+00:00","dateModified":"2026-03-02T08:03:06+00:00","breadcrumb":{"@id":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ai-json-feed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.huntbee.com\/resources\/"},{"@type":"ListItem","position":2,"name":"XML Sitemap Generator + AI Feed JSON + IndexNow PRO","item":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/"},{"@type":"ListItem","position":3,"name":"AI JSON Feed"}]},{"@type":"WebSite","@id":"https:\/\/www.huntbee.com\/resources\/#website","url":"https:\/\/www.huntbee.com\/resources\/","name":"HuntBee Resources","description":"OpenCart Extension Documentations - Guides - Blogs - Projects","publisher":{"@id":"https:\/\/www.huntbee.com\/resources\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.huntbee.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.huntbee.com\/resources\/#organization","name":"HuntBee OpenCart","url":"https:\/\/www.huntbee.com\/resources\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.huntbee.com\/resources\/#\/schema\/logo\/image\/","url":"https:\/\/www.huntbee.com\/resources\/wp-content\/uploads\/2020\/04\/cropped-mobile-logo-new.png","contentUrl":"https:\/\/www.huntbee.com\/resources\/wp-content\/uploads\/2020\/04\/cropped-mobile-logo-new.png","width":945,"height":200,"caption":"HuntBee OpenCart"},"image":{"@id":"https:\/\/www.huntbee.com\/resources\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/huntbee.opencart","https:\/\/www.instagram.com\/opencart.huntbee\/"]}]}},"comment_count":0,"_links":{"self":[{"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/14719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/types\/docs"}],"replies":[{"embeddable":true,"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/comments?post=14719"}],"version-history":[{"count":2,"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/14719\/revisions"}],"predecessor-version":[{"id":14721,"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/14719\/revisions\/14721"}],"up":[{"embeddable":true,"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/245"}],"next":[{"title":"IndexNow Settings","link":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/ndexnow-settings\/","href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/14722"}],"prev":[{"title":"Smart SEO Mode & Cache","link":"https:\/\/www.huntbee.com\/resources\/docs\/seo-xml-sitemap-generator-pro\/smart-seo-mode-cache\/","href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/docs\/14716"}],"wp:attachment":[{"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/media?parent=14719"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.huntbee.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=14719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}