diff --git a/packages/x-components/static-docs/build-search-ui/web-archetype-integration-guide.md b/packages/x-components/static-docs/build-search-ui/web-archetype-integration-guide.md
index dcfd0493b9..7457d5bb68 100644
--- a/packages/x-components/static-docs/build-search-ui/web-archetype-integration-guide.md
+++ b/packages/x-components/static-docs/build-search-ui/web-archetype-integration-guide.md
@@ -319,9 +319,14 @@ functions to integrate Interface X in your website. You can access these fu
### Dynamic query results preview
The `queriesPreview` parameter settings can be changed to dynamically preview product results from
-the queries you define according to your brand's strategy. Use the `setSnippetConfig` function in
-the [`X API`](#x-api) object to determine the queries to be previewed dynamically depending on the
-section the shopper is visiting in your commerce store, for instance, or any other scenario.
+the queries you define according to your brand's strategy.
+
+You may set the `queriesPreview` in two ways:
+
+- In the initialization object as parameter.
+- Later on , using the `setSnippetConfig` function in the [`X API`](#x-api) object to determine the
+ queries to be previewed dynamically depending on the section the shopper is visiting in your
+ commerce store, for instance, or any other scenario.
The following example shows you how to change dynamically the preview of query results in the _kids_
and _adult_ sections:
@@ -353,3 +358,50 @@ and _adult_ sections:
}
```
+
+#### Adding filters
+
+The `queriesPreview` accept additional parameters that allow to filter the result set. See the
+following example:
+
+```html
+
+```
+
+::: note
+
+The syntax to each filter is the same one as the one sent to the search request when selecting a
+filter in the interface.
+
+:::
+
+#### Adding extra params
+
+On top of that, extra parameters can be added to the search request of the `queriesPreview`, for
+instance:
+
+```html
+
+```