> 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: Sites Dashboard Navigation

## Article: Sites Dashboard Navigation

## Article Link: https://dev.wix.com/docs/api-reference/account-level/sites/skills/sites-dashboard-navigation.md

## Article Content:

# Sites Dashboard Navigation

For the general URL contract, see [Dashboard Navigation](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/dashboard-navigation.md). Sites pages are **account-level** — they live under `https://manage.wix.com/account/...` and take no metaSiteId.

## Main Pages

| Page | URL | What it manages |
|---|---|---|
| My Sites (site list) | `https://manage.wix.com/account/websites` | All sites in the account |
| A site's dashboard | `https://manage.wix.com/dashboard/{metaSiteId}/home` | One site's dashboard home |

## Pairing Entities with Their Read APIs

| Entity | Read API | Dashboard link |
|---|---|---|
| Site | `POST /site-list/v2/sites/query` (returns each site's `id` = metaSiteId + name) | `https://manage.wix.com/dashboard/{id}/home` |

Example — after creating a site from a template:

```
Created "Sunset Spa" from the template.
Open its dashboard: https://manage.wix.com/dashboard/{metaSiteId}/home
All your sites: https://manage.wix.com/account/websites
```