Skip to main content
The sdk.store namespace provides methods to fetch store metadata, configuration, and display content. All methods are public and do not require authentication.

Methods

store.get(params?)

Retrieve the store’s basic information. Optionally include related data.
Parameters: Returns: Store

store.getCurrencies()

Get the list of currencies supported by the store.
Returns: Array<{ code: string; symbol: string; name: string }>

store.changeCurrency(currency)

Switch the active currency for the current session.
Parameters: Returns: void

store.getSettings()

Retrieve the store’s public settings (theme configuration, social links, contact info, etc.).
Returns: Record<string, any>

store.getFeatures()

Get the store’s feature highlights, typically displayed on the homepage.
Returns:

store.getBanners()

Get promotional banners configured for the store.
Returns:

Example: Store Landing Page