> 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 # GetCurrencies # Package: stores # Namespace: SiteCurrencySettings # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/site-currency/get-currencies.md ## Permission Scopes: Manage Stores: SCOPE.STORES.MANAGE-STORES ## Introduction Retrieves the list of currencies that can be displayed on the site. Returns all currencies that are currently enabled for the site. Visitors can view prices in any of these currencies. --- ## REST API ### Schema ``` Method: getCurrencies Description: Retrieves the list of currencies that can be displayed on the site. Returns all currencies that are currently enabled for the site. Visitors can view prices in any of these currencies. URL: https://www.wixapis.com/settings/v1/currencies/site Method: GET Return type: GetCurrenciesResponse - name: currencies | type: array | description: List of currencies currently enabled for the site. - name: code | type: string | description: Three-letter currency code, in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format. ``` ### Examples ### Get Currencies Retrieves the list of currencies that can be displayed on the site. ```curl curl -X GET \ 'https://www.wixapis.com/settings/v1/currencies/site' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.stores.SiteCurrencySettings.getCurrencies() Description: Retrieves the list of currencies that can be displayed on the site. Returns all currencies that are currently enabled for the site. Visitors can view prices in any of these currencies. Return type: PROMISE - name: currencies | type: array | description: List of currencies currently enabled for the site. - name: code | type: string | description: Three-letter currency code, in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format. ``` ### Examples ### getCurrencies ```javascript import { siteSettings } from '@wix/currency-converter'; async function getCurrencies() { const response = await siteSettings.getCurrencies(); }; ``` ### getCurrencies (with elevated permissions) ```javascript import { siteSettings } from '@wix/currency-converter'; import { auth } from '@wix/essentials'; async function myGetCurrenciesMethod() { const elevatedGetCurrencies = auth.elevate(siteSettings.getCurrencies); const response = await elevatedGetCurrencies(); } ``` ### getCurrencies (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { siteSettings } from '@wix/currency-converter'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { siteSettings }, // Include the auth strategy and host as relevant }); async function getCurrencies() { const response = await myWixClient.siteSettings.getCurrencies(); }; ``` ---