Supported Currencies

Frame supports a variety of currencies for payment processing. When creating charges, subscriptions, or other payment-related objects, you must specify a currency using its three-letter ISO currency code in lowercase.

Available Currencies

CurrencyISO CodeSymbol
US DollarUSD$
EuroEUR
British PoundGBP£

Asynchronous Processing

Payments in currencies other than USD are processed asynchronously. The result of these transactions will be delivered via webhooks.

Usage

When specifying a currency in API requests, use the lowercase three-letter ISO code:

{
  "amount": 2000,
  "currency": "usd"
}

Note

The amount is always specified in the smallest currency unit. For example, to charge $20.00 USD, provide 2000 (2000 cents). Similarly, €15.00 would be 1500 and £10.00 would be 1000.