> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appcharge.com/llms.txt
> Use this file to discover all available pages before exploring further.

# About Price Localization for External Stores

This page provides an overview of the technical flows for integrating price localization in an external webstore using Appcharge.

***Note:** You can read more about the two currently localization models that Appcharge offers in the [Currency Localization Models documentation](./choose-a-price-localization-model).*

## Price Points Localization in External Store

* Configure the price points in USD in the Appcharge Dashboard (see [Price Points Dashboard Setup Guide](./set-up-price-points)).
* Execute the `getPricePoints` method during the store boot phase.
* Retrieve and display the localized prices, formatted with the local currency and tax inclusive, on the store screen.
* When an offer is selected, execute the `createCheckoutSession` function with the relevant price point.

***

## Currency Conversion in External Store

* Present prices in USD in the store phase.
* When an offer is selected, execute the `createCheckoutSession` function using the relevant price in USD.
* The checkout process will automatically convert the USD amount to the player’s local currency.

<Warning>
  <b> Simple conversion model tax implications </b>
  <br /> Note that the tax will be cut out of the total price in 'tax inclusive' countries (which means that you will receive the USD amount minus the tax amount), and no rounding rules will be applied on localized prices.
</Warning>

For more detailed technical documentation on how to integrate these localization models, see the [Price Points Localization SDK API documentation](/../../sdks/checkout/frontend-sdk/set-up-price-points).
