> 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: getAllCurrencies() # Method package: wixPayBackend # Method menu location: wixPayBackend --> Currencies --> getAllCurrencies # Method Link: https://dev.wix.com/docs/velo/apis/wix-pay-backend/currencies/get-all-currencies.md # Method Description: Gets the list of all currencies for which Wix supports conversion. The `getAllCurrencies()` function returns a Promise that resolves to an array of currencies. The array lists all currencies for which Wix supports conversion and their symbols. > **Notes:** > - The `getAllCurrencies()` function is different from [`siteSettings.getCurrencies()`](wix-pay-backend/currencies/site-settings/get-currencies) in that this function gets the complete list of all of the currencies that are supported on Wix sites. > - The [`siteSettings.getCurrencies()`](wix-pay-backend/currencies/site-settings/get-currencies) function gets only the currencies that have been set for use in your site using the [`siteSettings.setCurrencies()`](wix-pay-backend/currencies/site-settings/set-currencies) function. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Return a list of all supported currencies. ```javascript import {currencies} from 'wix-pay-backend'; currencies.getAllCurrencies() .then((listOfAllCurrencies) => { const firstCurrencyCode = listOfAllCurrencies[0].code; const firstCurrencyCSymbol = listOfAllCurrencies[0].symbol; }); /* * listOfAllCurrencies: * [ * {"code": "BIF", "symbol": "FBu"}, * {"code": "CVE", "symbol": "$"}, * {"code": "KMF", "symbol": "CF"}, * ... * ] */ ``` ---