> For the complete documentation index, see [llms.txt](https://glu.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://glu.gitbook.io/docs/concepts/products/multi-currency.md).

# Multi-currency

Understand how to handle selling across multiple currencies.

### Configure the available currencies

The list of currencies available at any time is controlled by the `currencies` array found on the [store](/docs/api-reference/organisation-api/store.md).

{% code title="Get a store" lineNumbers="true" expandable="true" %}

```json
{
    "id": 2,
    "organisation": 3,
    "name": "Kingston Manor",
    "currencies": [
        {
            "currencyCode": "GBP",
        },
        {
            "currencyCode": "EUR",
        }
    ]
}
```

{% endcode %}
