Returns currencies supported by the store (derived from markets)
JavaScript
import { createSpreeClient } from '@spree/sdk' const client = createSpreeClient({ baseUrl: 'https://your-store.com', publishableKey: '<api-key>', }) const currencies = await client.store.currencies.list()
{ "data": [ { "iso_code": "USD", "name": "United States Dollar", "symbol": "$" }, { "iso_code": "EUR", "name": "Euro", "symbol": "€" } ] }
Publishable API key for store access
currencies found
Show child attributes
Was this page helpful?