> 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: siteSite.revision() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/site/revision.md # Method Description: Retrieves the site revision ID. The site revision ID is a unique identifier for the current revision of a site. Each time a site is manually saved or published following a change, a new revision is created. You can view and manage a site's revisions in the [Site History](https://support.wix.com/en/article/viewing-and-managing-your-site-history). You can use [site monitoring](https://support.wix.com/en/article/about-site-monitoring#site-revisions) to monitor and debug new revisions of a site. > **Notes:** > + Since publishing a site may change the revision ID, the ID when > previewing a site may be different than the ID for the published site. > > > + The site revision ID is unique, but not meaningful. > Therefore, you can't predict future revision IDs before they're created. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Get the site revision ID ```javascript import { site } from '@wix/site-site'; // ... const revision = await site.revision(); // "4x2y" ```