Finage Currency Data Feed

FREE
By Finage | Updated 4 days ago | Finance
Health Check

N/A

README

API Usage

After the subscribe an API package, you will get an API key to make requests.

According to your package, you API request could be limited or unlimited. Please check the API subscriptions.

We are using the In-Memory Cache Engine in our APIs. You’ll get the fastest API response from our server.

Getting Started
Finage API provides the simplest REST API with real-time and historical rates for currencies, cryptocurrencies and widgets. The data delivered depends on your package update rate, which is: 30 minutes, 5 minutes and 60 seconds. All API requests are encrypted using SHA-256. All the usage statistics will be shown in your Moon Dashboard in the API section on the top nav bar. You can track your total requests, usage requests, data update rates and subscription start-end dates.

Get Last Prices
Login to the Moon Dashboard and, in the API section, copy the API key into the query. This is how you can make a request for currency values:

https://api.finage.co.uk/last?currencies=GBPUSD,EURUSD&apikey=YOUR_API_KEY

You can add, remove or change which currencies you want to request by putting symbols in; currencies=GBPUSD,EURUSD,… etc. Just write symbols after commas.

Queries
currencies = Currency list hat you want to get prices
apikey = Your API key
Tip: You can always get a free API key from the Moon Dashboard subscription section to Launch Free.

Response

An example response given below when you make an API request.

{
“currencies”: [{
“name”: “GBPUSD”,
“value”: 1.23387,
“change”: -0.65,
“diference”: -0.008
},
{
“name”: “EURUSD”,
“value”: 1.12195,
“change”: -0.27,
“diference”: -0.003
}
],
"lastUpdate ": "2020 - 06 - 28 T21: 20: 08 ",
"lastUpdate_Timestamp ": "1593379208 "
}
JSON consists of the name of currency, value, daily change, daily diference percentage, last update date and timestamp. Tip: You can make a request to test in Moon Dashboard in API section.

Currency Converter API
Login to the Moon Dashboard and, in the API section, copy the API key into the query.

This is how you convert any currency between each other;

https://api.finage.co.uk/convert?from=BTC&to=USD&amount=2&apikey=YOUR_API_KEY

You can add, remove or change which currencies you want to convert by putting symbols in;

from=BTC&to=USD&amount=2

Queries
from = Source symbol
to = Target symbol
amount = Amount of the currency you want to convert.
apikey = Your API key
Response

An example response given below when you make a converter API request.

{
“from”: “BTC”,
“to”: “USD”,
“amount”: 2,
“value”: 17990.78,
“last_update”: “2020-06-28T21:40:08”,
“last_update_timestamp”: “1593380408”
}
JSON consists of the name of the currency, value of converted amount, last update date and timestamp.

Tip: You can make a convert request to test in Moon Dashboard in API section.

Historical Data API
Login to the Moon Dashboard and, in the API section, copy the API key into the query.

This is how you request historical data;

https://api.finage.co.uk/history?currency=EURUSD&from=2015-01-05&to=2015-01-07&apikey=YOUR_API_KEY

Queries
currency = Requested currency
from = Start date (YYYY-MM-dd)
to = End date (YYYY-MM-dd)
apikey = Your API key
Response

An example response given below when you make an historical API request.

[
{ “symbol”:“EURUSD”,“ask”:1.19454,“bid”:1.19495,“timestamp”:1420416000},
{ “symbol”:“EURUSD”,“ask”:1.19318,“bid”:1.19344,“timestamp”:1420502400},
{ “symbol”:“EURUSD”,“ask”:1.18889,“bid”:1.18907,“timestamp”:1420588800}
]
The response does not includes bank holidays.

Followers: 4
Resources:
Product Website Terms of use
API Creator:
Rapid account: Finage
Finage
Finage
Log In to Rate API
Rating: 1 - Votes: 1