🎉 Always free, no credit card required! 🎉
Access 593 real-time currency exchange rates with our completely free API. No credit card required.
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"
Please sign up to try our API with real data
Create Free AccountBuilt by developers, for developers. Our API is designed to be simple, intuitive, and powerful.
// 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);
Get real-time cryptocurrency exchange rates alongside traditional currencies. Access data for Bitcoin, Ethereum, and other major cryptocurrencies.
Start Using Crypto APINo hidden fees, no credit card required. Start using our API immediately.
Get up-to-date exchange rates from reliable sources.
Easy to integrate with any programming language or platform.
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.
Each HTTP request to our API endpoints counts as a single request, regardless of the number of currencies or data points returned.
Not yet, but we are working on it!
Yes! Our API is completely free forever. No credit card required, no hidden fees, and no usage limits.
We maintain 99.9% uptime and source our data from trusted providers including major banks and financial institutions.
Yes! We provide real-time pricing data for major cryptocurrencies including Bitcoin, Ethereum, and many others.
Our currency API offers an extensive range of world currencies. Below is a list of supported physical currencies.
One plan. Everything included. Always free.
No credit card required
{
"base": "USD",
"rates": {
"EUR": 0.85,
"GBP": 0.73,
"JPY": 110.0,
// ... other currencies
}
}
{
"amount": 100,
"from": "USD",
"to": "EUR",
"result": 85.0
}