> For the complete documentation index, see [llms.txt](https://developer.paddle.com/llms.txt).

# Charge customers in Chilean Peso and Peruvian Sol

Create prices, discounts, transactions, and subscriptions in Chilean Peso (CLP) and Peruvian Sol (PEN).

---

## What's new?

We added Chilean Peso (`CLP`) and Peruvian Sol (`PEN`) as [supported currencies](https://developer.paddle.com/concepts/sell/supported-currencies.md) for payments.

- **currency_code** (string): Now accepts `CLP` (Chilean Peso) and `PEN` (Peruvian Sol) as values on prices, discounts, transactions, and subscriptions.

## How it works

Chile and Peru are among Latin America's largest digital commerce markets. The primary currencies are Chilean Peso (`CLP`) and Peruvian Sol (`PEN`).

Offering [prices in local currencies](https://developer.paddle.com/build/products/offer-localized-pricing.md) builds trust by helping customers understand how much they're being charged, means they're less likely to be charged FX fees, and improves payment acceptance rates.

You can now [create prices](https://developer.paddle.com/build/products/create-products-prices.md) and price overrides in Chilean Peso and Peruvian Sol. Paddle Checkout automatically presents prices in CLP for customers in Chile, and in PEN for customers in Peru.

`CLP` and `PEN` are now valid values for `currency_code` when working with payment currencies in the Paddle API, including:

- `price.unit_price.currency_code`
- `price.unit_price_overrides.unit_price.currency_code`
- `discount.currency_code`
- `transaction.currency_code`
- `subscription.currency_code`
- `pricing_preview.currency_code`

You may also see them in responses from the Paddle API as payment currencies.

{% callout type="info" %}
`CLP` has no subunit. Amounts must be whole integers. For example, 1000 CLP is `"1000"`, not `"100000"` as it would be for a two-decimal currency.
{% /callout %}

## Next steps

This change is available in version `1` of the Paddle API.

It's a non-breaking change, meaning it doesn't impact existing integrations.

Check the API documentation to work with [prices](https://developer.paddle.com/api-reference/prices.md), [subscriptions](https://developer.paddle.com/api-reference/subscriptions.md), and [transactions](https://developer.paddle.com/api-reference/transactions.md) in CLP and PEN.
## Summary of changes

| Name | Type | Change | Entity | Description |
| --- | --- | --- | --- | --- |
| `unit_price.currency_code` | Enum value | added | Price | New `CLP` (Chilean Peso) and `PEN` (Peruvian Sol) values accepted as payment currencies. |
| `unit_price_overrides.unit_price.currency_code` | Enum value | added | Price | New `CLP` and `PEN` values accepted in price overrides. |
| `currency_code` | Enum value | added | Discount | New `CLP` and `PEN` values accepted as payment currencies for discounts. |
| `currency_code` | Enum value | added | Transaction | New `CLP` and `PEN` values returned for transactions paid in Chilean Peso or Peruvian Sol. |
| `currency_code` | Enum value | added | Subscription | New `CLP` and `PEN` values returned for subscriptions billed in Chilean Peso or Peruvian Sol. |
