> 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: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/api-reference/business-management/site-search/wix-site-search/introduction.md ## Article Content: # About the Wix Site Search API The Wix Site Search API allows you to search and retrieve specific types of documents from a site. The API returns results in the form of site document objects that match your search criteria. You can also perform aggregations on the search results. For example, you can aggregate search results of the `STORES_PRODUCTS` document type to find the lowest price for each brand in your store. Learn more about the [Wix Site Search](https://support.wix.com/en/article/about-wix-site-search) feature. ## Supported document types The Search API supports several document types, each with its own schema that defines which fields support filtering, sorting, and search. For schema details, see [Schemas for Wix Search](https://dev.wix.com/docs/api-reference/business-management/site-search/wix-site-search/schemas-for-wix-search.md). ## Before you begin It's important to note the following points before starting to code: + The site owner must install the Wix Site Search app. + Document types are not the same as [Wix app collections](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-wix-app-collections). Though they overlap in content, documents are specifically for use by Wix Search. ## Use cases + [Search for jazz events in San Francisco.](https://dev.wix.com/docs/api-reference/business-management/site-search/wix-site-search/sample-flows.md#search-for-jazz-events-in-san-francisco) + [Find the lowest price for products in stock and out of stock.](https://dev.wix.com/docs/api-reference/business-management/site-search/wix-site-search/sample-flows.md#find-the-lowest-price-for-products-in-stock-and-out-of-stock) ## Terminology + **Document:** A document is a structured set of field and value pairs. Each document type corresponds to a specific Wix app on a site and follows a specific Wix Search schema. The following documents are supported: + **Site pages:** All regular and dynamic site pages with [SEO indexing enabled](https://support.wix.com/en/article/enabling-search-engines-like-google-to-index-your-site). All Wix site pages are indexed by default. Note that custom router pages and some Wix app pages are not currently searchable. + **Wix app content:** Pages whose content is derived from the following schemas for Wix Search: BLOG_POSTS, BOOKING_SERVICES, FORUM_CONTENT, EVENTS, STORES_PRODUCTS, and PROGALLERY_ITEM. + **Document type:** The specific type of document to search in, as listed in the [Supported document types](#supported-document-types) section. + **Aggregation:** A search method for grouping data into various categories (facets) and providing summaries for each category. For example, use aggregations to categorize search results by specific price ranges, brand names, or ratings. @sdk_package_setup