This API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Just Getting Started?
Check out our development quickstart guide.
Fixer API uses API keys to authenticate requests. You can view and manage your API keys in the Accounts page.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
All requests made to the API must hold a custom HTTP header named "apikey". Implementation differs with each programming language. Below are some samples.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
Currency conversion endpoint, which can be used to convert any amount from one currency to another. In order to convert currencies, please use the API's convert endpoint, append the from and to parameters and set them to your preferred base and target currency codes.
amount
(required)
The amount to be converted.
Location: Query, Data Type: string
from
(required)
The three-letter currency code of the currency you would like to convert from.
Location: Query, Data Type: string
to
(required)
The three-letter currency code of the currency you would like to convert to.
Location: Query, Data Type: string
date
(optional)
Specify a date (format YYYY-MM-DD) to use historical rates for this conversion.
Location: Query, Data Type: string
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Fluctuation endpoint you will be able to retrieve information about how currencies fluctuate on a day-to-day basis. To use this feature, simply append a start_date and end_date and choose which currencies (symbols) you would like to query the API for. Please note that the maximum allowed timeframe is 365 days.
end_date
(required)
The end date of your preferred timeframe.
Location: Query, Data Type: string
start_date
(required)
The start date of your preferred timeframe.
Location: Query, Data Type: string
base
(optional)
Enter the three-letter currency code of your preferred base currency.
Location: Query, Data Type: string
symbols
(optional)
Enter a list of comma-separated currency codes to limit output currencies.
Location: Query, Data Type: string
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Returns real-time exchange rate data updated every 60 minutes, every 10 minutes or every 60 seconds.
base
(optional)
Enter the three-letter currency code of your preferred base currency.
Location: Query, Data Type: string
symbols
(optional)
Enter a list of comma-separated currency codes to limit output currencies.
Location: Query, Data Type: string
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Returning all available currencies.
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Timeseries endpoint lets you query the API for daily historical rates between two dates of your choice, with a maximum time frame of 365 days.
end_date
(required)
The end date of your preferred timeframe.
Location: Query, Data Type: string
start_date
(required)
The start date of your preferred timeframe.
Location: Query, Data Type: string
base
(optional)
Enter the three-letter currency code of your preferred base currency.
Location: Query, Data Type: string
symbols
(optional)
Enter a list of comma-separated currency codes to limit output currencies.
Location: Query, Data Type: string
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Historical rates are available for most currencies all the way back to the year of 1999. You can query the Fixer API for historical rates by appending a date (format YYYY-MM-DD) to the base URL.
date
(required)
A date in the past for which historical rates are requested.
Location: Path, Data Type: string
base
(optional)
Enter the three-letter currency code of your preferred base currency.
Location: Query, Data Type: string
symbols
(optional)
Enter a list of comma-separated currency codes to limit output currencies.
Location: Query, Data Type: string
Below is a sample response from the endpoint
If you wish to play around interactively with real values and run code, see...
Each subscription has its own rate limit. When you become a member, you start by choosing a rate limit that suits your usage needs. Do not worry; You can upgrade or downgrade your plan at any time. For this reason, instead of starting with a larger plan that you do not need, we can offer you to upgrade your plan after you start with "free" or "gold plan" options and start using the API.
When you reach a rate limit (both daily and monthly), the service will stop responding and returning the HTTP 429 response status code (Too many requests) for each request with the following JSON string body text.
{
"message":"You have exceeded your daily\/monthly API rate limit. Please review and upgrade your subscription plan at https:\/\/apilayer.com\/subscriptions to continue."
}
A reminder email will be sent to you when your API usage reaches both 80% and 90%, so that you can take immediate actions such as upgrading your plan in order to prevent your application using the API from being interrupted.
You can also programmatically check your rate limit yourself. As a result of each request made to the APILayer, the following 4 fields provide you with all the necessary information within the HTTP Headers.
x-ratelimit-limit-month: Request limit per month
x-ratelimit-remaining-month: Request limit remaining this month
x-ratelimit-limit-day: Request limit per day
x-ratelimit-remaining-day: Request limit remaining today
You can contact our support unit if you need any assistance with your application regarding to handle the returned result by looking at the header information.
APILayer uses standard HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate a clientside error, which means that failed given the information provided (e.g., a missing parameter, unauthorized access etc.). Codes in the 5xx range indicate an error with APILayer's servers (normally this should'nt happen at all).
If the response code is not 200, it means the operation failed somehow and you may need to take an action accordingly. You can check the response (which will be in JSON format) for a field called 'message' that briefly explains the error reported.
Status Code | Explanation |
---|---|
400 - Bad Request | The request was unacceptable, often due to missing a required parameter. |
401 - Unauthorized | No valid API key provided. |
404 - Not Found | The requested resource doesn't exist. |
429 - Too many requests | API request limit exceeded. See section Rate Limiting for more info. |
5xx - Server Error | We have failed to process your request. (You can contact us anytime) |
You can always contact for support and ask for more assistance. We'll be glad to assist you with building your product.