> 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: Site ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-urls-v2/site/introduction.md ## Article Content: # Introduction With the Site API, you can retrieve the relevant URLs for the published site, including translated pages. ## Use cases - Redirect site visitors to a translated version of the site. ## Terminology - **Primary URL**: Site contributors can connect an unlimited number of domains (URLs) to a single Wix site. The primary URL is the domain that they connect directly to the site and is the site's main URL. - **Secondary URL**: When site contributors connect additional domains/URLs to a site, they are considered secondary URLs, and will redirect visitors to the primary URL. - **Wix Multilingual**: A Wix product that manages site translation. Read more about [Wix Multilingual](https://support.wix.com/en/article/wix-multilingual-adding-and-setting-up-wix-multilingual). ## Import statement To use the wix-urls.v2 API, import `site` from wix-urls.v2: ```js import { site } from 'wix-urls.v2'; ```