> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: wix-search ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-search/introduction.md ## Article Content: # Introduction The wix-search API allows you to create a custom site search experience for your site visitors. For example, you can use a text input element to get a search phrase from site visitors, search your store products for the phrase, and display the matching store products in a repeater. You can [filter](wix-search.html#filter), [sort](wix-search.WixSearchBuilder.html#ascending), and apply [facets](wix-search.WixSearchBuilder.html#facets) (categorize) the results of a site search. To enable Search API functionality for your site, you must add the [Wix Site Search application](https://support.wix.com/en/article/about-wix-site-search) to your site. After installing the app you can delete the Search Bar, but make sure to leave the [Search Results page](https://support.wix.com/en/article/about-wix-site-search#understanding-the-search-results-page) on your site. Note that you cannot use the Search API to control the Wix Search Bar or Search Results page. The Search API searches supported site documents and returns matching search results in `Document` form. The following documents are currently supported: + **Site pages:** All regular and dynamic site pages with [SEO indexing enabled](https://support.wix.com/en/article/enabling-search-engines-eg-google-to-find-your-site). Note that Wix site pages are indexed by default. Custom router pages and some Wix app pages are not currently included in searches. + **Wix app content:** Pages whose content is extracted from the following database collections: Blog/Posts, Bookings/Services, Forum/Posts & Forum/Comments, and Stores/Products. To use the search module, import `wixSearch` from the `wix-search` module: ``` javascript import wixSearch from 'wix-search'; ```