> 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 # Method name: getPageUrl(destination: Destination) # Method package: wixDashboard # Method menu location: wixDashboard --> getPageUrl # Method Link: https://dev.wix.com/docs/velo/apis/wix-dashboard/get-page-url.md # Method Description: Gets the full URL for a dashboard page. > **Note:** This function can only be used in page code files for dashboard pages created in the [Wix Editor](https://support.wix.com/en/article/velo-working-with-dashboard-pages) or with [Wix Blocks](https://support.wix.com/en/article/wix-blocks-creating-and-managing-blocks-dashboard-pages). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the URL of the dashboard home page ```javascript import { getPageUrl } from 'wix-dashboard'; // ... console.log('Home page url is:', await getPageUrl({pageId: '2e96bad1-df32-47b6-942f-e3ecabd74e57'})); ``` ---