> 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: sitePay.getCurrencies() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/pay/currencies/site-settings/get-currencies.md # Method Description: Gets the list of supported currencies that you set for your site. The `getCurrencies()` function returns a Promise that resolves to an array of currencies that were set for use in the site using the backend function [`siteSetting.setCurrencies()`](https://dev.wix.com/docs/velo/api-reference/wix-pay-backend/currencies/site-settings/set-currencies.md). This function is different from the [`getAllCurrencies()`](pay/currencies/get-all-currencies) function in that it gets only the currencies that have been set for use in this site using the [`siteSetting.setCurrencies()`](https://dev.wix.com/docs/velo/api-reference/wix-pay-backend/currencies/site-settings/set-currencies.md) function. The [`getAllCurrencies()`](pay/currencies/get-all-currencies) function gets the complete list of all of the currencies that can be supported. > **Note:** For SiteSettings functions to work, your site must contain a Wix Stores page including the [currency conversion element](https://support.wix.com/en/article/adding-and-setting-up-a-currency-converter-in-wix-stores). # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Get currencies that were set for this site. ```javascript import { siteSettings } from '@wix/site-pay'; const siteCurrencies = await siteSettings.getCurrencies(); /* * Promise resolves to: * [ * {"code": "USD"}, * {"code": "BRL"}, * {"code": "JPY"} * ] */ ```