Search.../

getAllCurrencies( )

Gets the list of all currencies for which Wix supports conversion.

Description

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.

Note: The getAllCurrencies() function is different from siteSettings.getCurrencies() in that this function gets the complete list of all of the currencies that are supported on Wix sites. The siteSettings.getCurrencies() function gets only the currencies that have been set for use in your site using the backend function siteSettings.setCurrencies().

Syntax

function getAllCurrencies(): Currency

getAllCurrencies Parameters

This function does not take any parameters.

Returns

Fulfilled - The list of all supported currencies.

Return Type:

Promise<Array<Currency>>
NAME
TYPE
DESCRIPTION
code
string

A 3-letter ISO-4217 currency code.

symbol
string

A currency symbol.

Was this helpful?

Get all supported currencies

Copy Code
1import {currencies} from 'wix-pay-frontend';
2
3currencies.getAllCurrencies()
4 .then((listOfAllCurrencies) => {
5 const firstCurrencyCode = listOfAllCurrencies[0].code;
6 const firstCurrencyCSymbol = listOfAllCurrencies[0].symbol;
7 });
8
9/*
10 * listOfAllCurrencies:
11 * [
12 * {"code": "BIF", "symbol": "FBu"},
13 * {"code": "CVE", "symbol": "$"},
14 * {"code": "KMF", "symbol": "CF"},
15 * ...
16 * ]
17 */