> 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: getRouterData() # Method package: wixWindowFrontend # Method menu location: wixWindowFrontend --> getRouterData # Method Link: https://dev.wix.com/docs/velo/apis/wix-window-frontend/get-router-data.md # Method Description: Retrieves the data sent by a router to a page as part of its response. When you define a router and its functionality in the router() method, you can include data in the router's response. This data can then be accessed in the code of the routed page by calling the getRouterData() method. If you call this method from a non-router page or a router page that wasn't sent any data, the method returns `null`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the data sent by a router ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... let routerData = wixWindowFrontend.getRouterData(); ``` ---