> 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: getAddress() # Method package: wixSiteBackend # Method menu location: wixSiteBackend --> GeneralInfo --> getAddress # Method Link: https://dev.wix.com/docs/velo/apis/wix-site-backend/general-info/get-address.md # Method Description: Gets the physical address of the site's business. The `getAddress()` function returns a Promise that resolves to the site's corresponding physical address information. The retrieved address is the address that has been entered in the **General Info** section of your site's [**Dashboard**](https://support.wix.com/en/article/wix-dashboard-overview). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get site's corresponding physical address information ```javascript import { Permissions, webMethod } from 'wix-web-module'; import wixSiteBackend from 'wix-site-backend'; export const getAddress = webMethod(Permissions.Anyone, () => { return wixSiteBackend.generalInfo.getAddress(); }); /* * { * "street": "235 W 23rd St", * "city": "New York", * "country": "USA", * "state": "NY", * "zip": "10011", * "hint": { * "text": "green building", * "placement": "BEFORE" * }, * "isPhysical": true, * "googleFormattedAddress": "235 W 23rd St, New York, NY, 10011", * "streetNumber": "235", * "apartmentNumber": "12", * "coordinates": { * "latitude": "40.744869", * "longitude": "-73.996736" * } * } */ ``` ---