> 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: Retrieve an App Instance's Version Number ## Article: Retrieve an App Instance's Version Number ## Article Link: https://dev.wix.com/docs/build-apps/manage-your-app/versioning/retrieve-an-app-instance-s-version-number.md ## Article Content: # Retrieve an App Instance's Version Number You can call [Get App Instance](https://dev.wix.com/docs/rest/app-management/app-instance/get-app-instance.md) to retrieve the internal version of your app that is installed on each Wix user's site. The response contains app information: ```"instance": { "appName": "MY_APP", "appVersion": "2.10.0", ``` It also contains site information: ```"site": { "locale": "en", "siteDisplayName": "Mysite 34", "url": "https://doereg11.wixsite.com/mysite-34", "description": "My awesome site is all about selling stuff", "ownerEmail": "site-owner@test.com", "ownerInfo": { "email": "site-owner@test.com", "emailStatus": "VERIFIED_OPT_IN" } ``` On this owner's site the app’s major version is '2' and minor version is '10'. Wix users will get minor updates automatically, to 2.11, 2.12 and so on. However, the next major version, 3.0.0, will require the Wix user to click the Update button in the App Manager or follow the instructions in your email or banner. ## See also - [About app distribution](https://dev.wix.com/docs/build-apps/launch-your-app/app-distribution/about-app-distribution.md) - [Release a new app version](https://dev.wix.com/docs/build-apps/manage-your-app/versioning/release-a-new-app-version.md)