> 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: getPageUrl() ## Article: getPageUrl() ## Article Link: https://dev.wix.com/docs/sdk/host-modules/dashboard/get-page-url.md ## Article Content: # getPageUrl() Gets the full URL for a dashboard page. ## Method Declaration ```ts (destination: Destination) => Promise ``` ## Parameters | Name | Type | Description | |:--------------|:-----------------------------------|:----------------| | `destination` | [Destination](#destination-object) | URL destination details. | ### Destination Object ```ts { pageId: string; relativeUrl?: string; } ``` | Name | Type | Description | |:---------------|:---------|:-------------------------------------------------------------------------------------------------------| | `pageId` | `string` | ID of the page to link to. Use the [Page IDs](https://dev.wix.com/docs/sdk/host-modules/dashboard/page-ids.md) table to find the appropriate ID. | | `relativeUrl` | `string` | Optional. URL segment to append to the base URL of the selected page. Can include path segments, a query string, and a fragment identifier. | ## Returns ``` Promise ``` The URL of a dashboard page with the provided `relativeUrl` value appended. ## Examples > **Note:** To call this method in [self-hosted apps](https://dev.wix.com/docs/sdk/articles/get-started/about-self-hosted-apps.md), you need to create a [client](https://dev.wix.com/docs/sdk/articles/set-up-a-client/about-the-wix-client.md). See the [setup](https://dev.wix.com/docs/sdk/host-modules/dashboard/introduction.md) guide for more details. ### Get the URL of the dashboard's home page with a query string ```js import { dashboard } from '@wix/dashboard'; const pageUrl = await dashboard.getPageUrl({pageId: '2e96bad1-df32-47b6-942f-e3ecabd74e57', relativeUrl: '?referal=page-3'}); ```