> 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: siteSeo.links() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/seo/links.md # Method Description: Gets the page's SEO-related link tags. Use the `links` property to get a page's SEO-related link tags which provide additional SEO information about your page. For example, the tags may contain a link to a canonical or alternate version of the current page. > **Note:** You should always invoke the `wixSeoFrontend.links` getter outside of the [`onReady()`](https://dev.wix.com/docs/velo/api-reference/$w/on-ready.md) event handler to ensure receiving the proper response. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Get a page's link tags ```javascript import { seo } from '@wix/site-seo'; // ... let links = await seo.links(); /* Promise resolves to: * * [ * { * "rel": "canonical", * "href": "http://mysite.com/canonical_version" * }, { * "rel": "author", * "href": "http://mysite.com/janedoe" * } * ] */ ```