--- displayed_sidebar: pricingReference badge: variant: orange text: Beta slug: /references/pricing/createCurrencies sidebar_label: createCurrencies --- import ParameterTypes from "@site/src/components/ParameterTypes" # createCurrencies - Pricing Module Reference This documentation provides a reference to the `createCurrencies` method. This belongs to the Pricing Module. This method is used to create new currencies. ## Example ```ts import { initialize as initializePricingModule, } from "@medusajs/pricing" async function createCurrencies () { const pricingService = await initializePricingModule() const currencies = await pricingService.createCurrencies([ { code: "USD", symbol: "$", symbol_native: "$", name: "US Dollar", } ]) // do something with the currencies or return them } ``` ## Parameters ## Returns