🎉 Always free, no credit card required! 🎉

UniRate Currency API

Access 593 real-time currency exchange rates with our completely free API. No credit card required.

Example Requests

Get exchange rates:

curl -X GET "https://api.unirateapi.com/api/rates?api_key=your-api-key&from=USD"

Convert currency:

curl -X GET "https://api.unirateapi.com/api/convert?api_key=your-api-key&amount=100&from=USD&to=EUR"

Try Our API

Please sign up to try our API with real data

Create Free Account

Currency Exchange API puts developers first

Built by developers, for developers. Our API is designed to be simple, intuitive, and powerful.

  • Clear, consistent API responses
  • Comprehensive documentation
  • Multiple integration examples
// Example JavaScript implementation
const response = await fetch(
  'https://api.unirateapi.com/api/rates?' +
  'api_key=your-api-key&from=USD'
);
const data = await response.json();
console.log(data.rates);
Bitcoin Bitcoin (BTC)
Ethereum Ethereum (ETH)
Litecoin Litecoin (LTC)
+500
More Coins

Cryptocurrency API now included

Get real-time cryptocurrency exchange rates alongside traditional currencies. Access data for Bitcoin, Ethereum, and other major cryptocurrencies.

Start Using Crypto API

Why Choose Our API?

Always Free

No hidden fees, no credit card required. Start using our API immediately.

Real-Time Data

Get up-to-date exchange rates from reliable sources.

Simple Integration

Easy to integrate with any programming language or platform.

590+
Supported Currencies
99.9%
Uptime
10K+
Active Users
24/7
Support

UniRate API - FAQ

Do you have any usage limits?

No! Our API is completely free with unlimited requests. We believe in providing unrestricted access to currency exchange data. We do have a rate limit of 30 requests per minute to prevent abuse.

What counts as one API request?

Each HTTP request to our API endpoints counts as a single request, regardless of the number of currencies or data points returned.

Do you offer historical data?

Not yet, but we are working on it!

Is the API really free forever?

Yes! Our API is completely free forever. No credit card required, no hidden fees, and no usage limits.

How reliable is your service?

We maintain 99.9% uptime and source our data from trusted providers including major banks and financial institutions.

Do you offer Cryptocurrency data?

Yes! We provide real-time pricing data for major cryptocurrencies including Bitcoin, Ethereum, and many others.

Exchange rate API supported currencies

Our currency API offers an extensive range of world currencies. Below is a list of supported physical currencies.

🇺🇸 USD
United States Dollar
🇪🇺 EUR
Euro
🇬🇧 GBP
British Pound Sterling
🇯🇵 JPY
Japanese Yen
🇦🇺 AUD
Australian Dollar
🇨🇦 CAD
Canadian Dollar
🇨🇭 CHF
Swiss Franc
🇨🇳 CNY
Chinese Yuan
🇮🇳 INR
Indian Rupee
🇧🇷 BRL
Brazilian Real
🇷🇺 RUB
Russian Ruble
🇰🇷 KRW
South Korean Won
🇸🇬 SGD
Singapore Dollar
🇳🇿 NZD
New Zealand Dollar
🇲🇽 MXN
Mexican Peso
🇭🇰 HKD
Hong Kong Dollar
🇹🇷 TRY
Turkish Lira
🇿🇦 ZAR
South African Rand
🇸🇪 SEK
Swedish Krona
🇳🇴 NOK
Norwegian Krone
🇩🇰 DKK
Danish Krone
🇵🇱 PLN
Polish ZÅ‚oty
🇹🇭 THB
Thai Baht
🇮🇩 IDR
Indonesian Rupiah

Simple, Free Pricing

One plan. Everything included. Always free.

Free Forever Plan

$0

No credit card required

  • Unlimited API calls
  • Real-time exchange rates
  • 590+ currencies supported
  • Cryptocurrency rates included

Example Responses

GET /api/rates

{
  "base": "USD",
  "rates": {
    "EUR": 0.85,
    "GBP": 0.73,
    "JPY": 110.0,
    // ... other currencies
  }
}

GET /api/convert

{
  "amount": 100,
  "from": "USD",
  "to": "EUR",
  "result": 85.0
}