## What Is OpenAI Multicurrency Billing?
OpenAI has introduced multicurrency billing to simplify payments for users worldwide. Instead of everyone paying in USD, eligible customers now get invoices in their local currency, matched to their billing address country. This feature rolled out starting in late 2024 and aims to reduce forex fees and make budgeting easier.
Think of it like this: if your business operates in Europe, you avoid constant USD conversions. For API developers, costs remain quoted in USD (e.g., $0.02 per 1K tokens), but the final bill converts to your currency using the exchange rate on the billing date. This keeps pricing transparent while localizing payments.
### Real-World Example
A startup in Brazil using the OpenAI API for customer support chatbots previously dealt with USD invoices and bank conversion losses. Now, with multicurrency billing, they receive BRL invoices, making financial forecasting straightforward.
## Who Qualifies for Multicurrency Billing?
Eligibility depends on your billing address—not your location or IP. OpenAI automatically applies it if your address matches a supported country. New customers qualify immediately upon signup with a matching address. Existing users get it if their current billing address qualifies.
Key points:
- **Automatic enrollment**: No action needed if eligible.
- **Verification**: OpenAI checks your organization's billing address in the billing settings.
- **Ineligible cases**: Addresses in unsupported countries stick with USD billing.
### Checking Your Status
Log into your OpenAI dashboard, go to Billing > Overview. If multicurrency is active, you'll see your local currency (e.g., EUR) next to the balance. If not, it's USD.
## Supported Countries and Currencies
OpenAI supports over 30 currencies, each tied to specific countries. Here's the full list:
| Currency | Countries |
|----------|-----------|
| ARS | Argentina |
| AUD | Australia, New Zealand |
| BRL | Brazil |
| CAD | Canada |
| CHF | Switzerland |
| CLP | Chile |
| CNY | China (Mainland) |
| COP | Colombia |
| CZK | Czech Republic |
| DKK | Denmark |
| EUR | Austria, Belgium, Cyprus, Estonia, Finland, France, Germany, Greece, Ireland, Italy, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Portugal, Slovakia, Slovenia, Spain |
| GBP | United Kingdom |
| HKD | Hong Kong SAR |
| HUF | Hungary |
| IDR | Indonesia |
| ILS | Israel |
| INR | India |
| JPY | Japan |
| KRW | South Korea |
| MXN | Mexico |
| MYR | Malaysia |
| NOK | Norway |
| NZD | New Zealand (fallback if AUD not preferred) |
| PEN | Peru |
| PHP | Philippines |
| PLN | Poland |
| RON | Romania |
| SEK | Sweden |
| SGD | Singapore |
| THB | Thailand |
| TWD | Taiwan |
| USD | United States, and all unsupported countries |
| UYU | Uruguay |
| ZAR | South Africa |
**Note**: Some countries share currencies (e.g., Eurozone uses EUR). New Zealand primarily uses AUD but has NZD fallback. Always confirm your exact billing address for accuracy.
## How Does Multicurrency Billing Work?
### Automatic Detection and Activation
1. Enter or update your billing address in the OpenAI dashboard under Settings > Billing.
2. OpenAI verifies it against supported countries.
3. If matched, your next invoice switches to the local currency.
Usage accumulates in USD internally, then converts at the monthly billing date's exchange rate (using a reputable provider like Financial Times).
### Example Calculation
Suppose your API usage costs $100 USD in a month:
- Billing date rate: 1 USD = 0.92 EUR
- Invoice: €92.00
No hidden fees—straight conversion.
## Can I Change My Billing Currency?
Switching isn't self-service. Contact OpenAI support via the dashboard (Help > Contact Support) to request a change. Provide:
- New billing address
- Reason (e.g., business relocation)
Support reviews and may update within days. Frequent changes could be restricted to prevent abuse.
**Pro Tip**: Update your address before month-end to affect the next cycle.
## Viewing and Managing Invoices
Invoices display in your dashboard's Billing > Invoices section:
- **Currency**: Local currency totals.
- **Breakdown**: USD usage with conversion details.
- **PDF Download**: Localized currency, your timezone.
Past invoices remain in their original currency—no retroactive changes.
## Payment Methods by Currency
Options vary to match local norms:
| Currency Group | Methods |
|----------------|---------|
| EUR, GBP, CHF, SEK, NOK, DKK | SEPA Direct Debit, Credit/Debit Cards |
| CAD, AUD, NZD | Credit/Debit Cards |
| BRL | Boleto Bancário, Credit Cards |
| MXN | OpenPay (SPEI), Cards |
| INR | Razorpay, Cards |
| JPY | Credit Cards |
| KRW | Credit Cards |
| Others (e.g., ARS, CLP) | Primarily Credit/Debit Cards |
**USD Fallback**: Wire transfers or cards for non-card regions.
Setup auto-pay for convenience. Failed payments trigger retries and holds on API access.
### Handling Payment Issues
Monitor email notifications. Update payment method promptly to avoid disruptions.
## Taxes and VAT Handling
OpenAI calculates taxes based on your billing address:
- **EU**: VAT if applicable (e.g., reverse charge for VAT-registered).
- **Other regions**: Local sales tax or withholding as required.
Invoices include tax breakdowns. No tax? It's zero-rated.
**Enterprise Tip**: Provide VAT ID in billing settings for exemptions.
## Impact on API and ChatGPT Pricing
Core pricing unchanged—all in USD:
```python
# Example: GPT-4o-mini pricing (as of rollout)
input_tokens = 1_000
output_tokens = 500
cost_usd = (input_tokens * 0.00015) + (output_tokens * 0.00060) # $0.225
# Billed in local currency equivalent
```
ChatGPT Teams/Enterprise: Same logic applies.
## Legacy and Pay-As-You-Go Billing
Prepaid credits? They deduct in USD equivalent. Usage post-credits bills in local currency.
## Troubleshooting Common Issues
- **Wrong currency?** Verify billing address.
- **Payment rejected?** Check method compatibility.
- **Exchange rate disputes?** Rates are fixed at billing; view details on invoice.
Contact support for edge cases like multi-country orgs.
## Why Multicurrency Matters for Your Workflow
For developers scaling AI apps, predictable local costs aid compliance and cash flow. Finance teams appreciate localized reports. Explore integrating this with tools like Stripe for hybrid billing if needed.
This setup positions OpenAI competitively in global markets, especially EM regions with volatile USD rates.
---
<div style="text-align: center; margin-top: 2rem;">
<a href="https://help.openai.com/en/articles/10421635-multicurrency-billing" target="_blank" rel="noopener noreferrer" class="view-full-resource-btn" style="display: inline-block; background-color: #f97316; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.2s;">View Full Resource</a>
</div>