Powered by 25+ currency exchange rate data sources, the FCS delivering real-time 145+ country and 2000+ forex currencies combination prices rates. The FCS provides different API endpoints, each serving a different data response. We provides the latest FX price for all or a specific pair of currency, retrieving historical currency data for one or multiple currencies, technical indicators for market analyzing from 1min to 1 month.
In this document, you will learn how to use API with its parameters, potential unwanted errors and some code examples. After this document, if you face difficulty to understand API structure, you can contact us any time and our team will be happy to help out.
Most of the APIs endpoint count 1 credit for every URL request. But 3 endpoint count 1 credit per 100 record return. In Basic Plan user allow to request on any API 10,000 times in 1 month. Each API request count 1 credit. But some endpoint count by response, e.g: Latest price API.
If you enter 100 different IDs in parameter and API return 100 currencies prices, it will count 1 request.
If you enter 200 different IDs in parameter and API return 200 currencies prices, it will count 2 request. and so on.
You're not logged in.
Get Your API Key For those users who are demanding different tools related to the Forex API. FCS API has been designed and manipulates for the user to access tools quickly and troubleshoot their problems through this Forex API documentation. We have such capability to deliver the exchange rate data which is taking place in real-time for 145+ currencies of the world.
For developer, you can work in any programming language to hit on API URL. Use PHP (Curl or file_get_content), JavaScript (Ajax), Android (HttpURLConnection) or JAVA, C# (HttpWebRequest) or CURL for this. And finally, the users will be able to get a response in the format of standard JSON. Multiple endpoints are the source to get an API and they all serve different use cases. The function of the endpoint is to get the latest market exchange rate data that apply to all or a specific set of currencies.
You need an access key in order to access our database. Your access Key is the unique key that is passed into the API base URL's api_key
parameter in order to authenticate with the FCS API
You can get all the list of supported currencies short names by below API. You can use symbol name to get indicator values,historical and real-time rates. We made it easy for you to search and get all the supported currencies names list. We provide you a constantly updated forex API endpoint showing all the forex currencies API which is available in real-time.
api_key
= Your_API_Key output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Return All symbols, You need to use these symbols in Latest Price API, Price conversation, Historical and for Technical signals
After you request on API, It would give you the response in JSON format which you can change, it is up to your need.
status: boolean The status of this request's response. | ||||
code: integer The code of this request's response. | ||||
msg: string The massage of this request's response. | ||||
results: array
| ||||
info: array
|
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"id": 1,
"n": "Euro US Dollar",
"s": "EUR/USD",
"d": 4
},
{
"id": 2,
"n": "Euro Swiss Franc",
"s": "EUR/CHF",
"d": 4
},
],
"info": {
"st": "2023-09-06 21:53:51 UTC",
"cc": 1
}
}
In our API, You can get all the details about Forex currencies. Details like its name, country name, bank name, currency unit, type of notes and more details.
1 credit count for each 100 record returned (rounded up)
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Requrest by ID's'
Requrest by symbol combination
Requrest by currency short name
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"short_name": "CHF",
"name": "Swiss Franc",
"country": "Switzerland",
"code_n": 756,
"subunit": "Rappen",
"website": "snb.ch",
"symbol": "Fr., CHf, SFr.",
"bank": "Swiss National Bank",
"banknotes": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs",
"coins": "5 francs, 10 centimes, 2 francs, 1 ⁄ 2 francs, 20 centimes, 1 francs, 5 centimes",
"icon": "https://insightease.com/assets/images/flags/chf.svg",
"type": "forex",
"symbol_2": "Fr., CHf, SFr.",
"banknotes_2": "10 francs, 20 francs, 50 francs, 200 francs, 1000 francs, 100 francs",
"coins_2": "5 francs, 10 centimes, 2 francs, 1 ⁄ 2 francs, 20 centimes, 1 francs, 5 centimes"
},
],
"info": {
"st": "2023-03-18 12:15:11 UTC",
"cc": 1
}
}
In any Forex API, currency conversion is the most common and a popular part, through which we can get price conversion between two different specified currencies. To do so, you just simply have to attach the symbols parameter with amount to convert it into your required currency.
Below API does not support multiple symbols name in URL as a parameter. Send only one Symbol name at a time with the request.
api_key
= Your_API_Key symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
pair
= pair1 = EUR & pair2 = USD (Use both at a time) amount
= Set your convert price. Default: 1
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Currency Converter API (example symbol)
Currency Converter API (example pair)
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"price_1x_EUR": 0.93732,
"price_1x_USD": 1.06687,
"total": 213.374
}
],
"info": {
"st": "2023-03-18 12:27:39 UTC",
"cc": 1
}
}
Forex latest price API is very useful, you must have to get in touch with the updated price of a currency That's why the latest prices are included in any API which is the most common part. We provide one or multiple currency prices at the same time, To do so, you just have to send the request with symbols parameter in API request and set it to one or more comma-separated codes of a currency.
We update the prices of each currency in every 30 seconds or less.
1 credit count for each 100 record returned (rounded up)
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Requrest by ID's' Multiple or Single
Requrest by symbol Multiple or Single
All Prices at once: (return all latest prices of forex currencies)
After you request on API, It would give you the response in JSON format which you can change, it is up to your need.
status: boolean The status of this request's response. | |||||||||||||
code: integer The code of this request's response. | |||||||||||||
msg: string The massage of this request's response. | |||||||||||||
results: array
| |||||||||||||
info: array
|
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"id": 1,
"o": 1.06070,
"h": 1.06856,
"l": 1.06057,
"c": 1.06687,
"a": 1.06700,
"b": 1.06665,
"sp": 3.5,
"ch": +0.00617,
"cp": "+0.58%",
"t": 1679086794,
"s": "EUR/USD",
"tm": "2023-03-17 20:59:54"
}
],
"info": {
"st": "2023-03-18 13:01:45 UTC",
"cc": 1
}
}
We provide the last candle price of a currency to our users and it is also the useful part of API. Here, you can get single or multiples candle prices at the same time. To get the candle OHLC prices, you just have to append the symbols parameter with the URL request, and append single or multiple comma-separated currency codes.
Last Forex Candle API only support valid suppoted ID or name from our FX list, and candle API is less accurate then history and latest API.
1 credit count for each 100 record returned (rounded up)
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, pivot points. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
candle
= Any supported candle value If you enter candle=close it will return last close candle price, candle=active return latest active candle prices and candle=both return close & active candles
Default: both
Valid Values: active, close, both
Active: return current candle
Close: return 1 previous closed candle
Both: return 2 latest candle
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Requrest by ID's' Multiple or Single
Requrest by symbol Multiple or Single
All Prices at once: (return all candle prices of forex currencies)
The candle response only returns 2 last candle of each single currency and time period from the chart. If you want only latest price, Please use "Latest Price" API, If you need more previous candles please use Forex Historical API.
After you request on API, It would give you the response in JSON format which you can change, it is up to your need.
status: boolean The status of this request's response. | |||||||||||||
code: integer The code of this request's response. | |||||||||||||
msg: string The massage of this request's response. | |||||||||||||
results: array
| |||||||||||||
info: array
|
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"id": 1,
"o": 1.06823,
"h": 1.06823,
"l": 1.06621,
"c": 1.06632,
"a": 1.06654,
"b": 1.06610,
"sp": 4.4,
"t": 1679079600,
"ch": -0.00191,
"cp": "-0.18%",
"s": "EUR/USD",
"tm": "2023-03-17 19:00:00"
}
],
"info": {
"st": "2023-03-18 15:12:13 UTC",
"cc": 1
}
}
On the base of 1 currency, it will return all quote prices of all available currencies.
All Above quotes are not current price it is only for sample response, you can use API to get current quote price.
api_key
= Your_API_Key symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
type
= forex Default: forex
Valid Values: forex and crypto
If type = forex, & symbol = EUR, so you'll receive quotes of 140+ Forex currencies, e.g: EUR/JPY,EUR/GBP
If type = forex, & symbol = BTC, so you'll receive quotes of 140+ Forex currencies, e.g: BTC/USD, BTC/EUR
If type = crypto, & symbol = EUR, so you'll receive quotes of 1500+ Crypto currencies, e.g: EUR/BTC, EUR/ETH
If type = crypto, & symbol = BTC, so you'll receive quotes of 1500+ Forex currencies, e.g: BTC/ETH, BTC/LTC
time
= 1 Default: none
Valid Values: 1
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Requrest by ID's' Multiple or Single
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"AED": 3.67292,
"AFN": 87.46006,
"ALL": 107.4505,
"AMD": 388.286,
"ANG": 1.8023
}
],
"info": {
"base": "USD",
"type": "forex",
"st": "2023-03-18 15:28:01 UTC",
"cc": 1
}
}
Return all related currencies of required currency. If you enter USD in parameter value, then response will return all currencies of USD e.g: EUR/USD, JPY/USD, GBP/USD, PKR/USD ... etc/USD
Last Forex Cross API only support valid suppoted ID or name from our FX list, and cross API is less accurate then history and latest API. for more accurate prices, please use Latest, Base or history API
1 credit count for each 200 record returned (rounded up).
api_key
= Your_API_Key symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
type
= forex Default: forex
Valid Values: forex, crypto and both
If type = forex, and symbol = USD, then you will receive all Forex currency that contain USD in name.
If type = forex, and symbol = BTC, then you will receive all Forex currency that contain BTC in name.
If type = crypto, and symbol = EUR, then you will receive all Crypto currencies that contain EUR in name.
If type = both, and symbol = EUR, then you will receive all Forex and crypto currencies that contain EUR in name.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, pivot points. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
candle
= Any supported candle value If you enter candle=close it will return last close candle price, candle=active return latest active candle prices and candle=both return close & active candles
Default: both
Valid Values: active, close, both
Active: return current candle
Close: return 1 previous closed candle
Both: return 2 latest candle
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
API
Previous close candle
After you request on API, It would give you the response in JSON format which you can change, it is up to your need.
status: boolean The status of this request's response. | ||||||||||||||
code: integer The code of this request's response. | ||||||||||||||
msg: string The massage of this request's response. | ||||||||||||||
results: array
| ||||||||||||||
info: array
|
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"id": 1,
"o": 1.05787,
"h": 1.06362,
"l": 1.05517,
"c": 1.06147,
"a": 1.06160,
"b": 1.06125,
"sp": 3.5,
"t": 1678924800,
"s": "EUR/USD",
"type": "forex",
"ch": 0.0036,
"cp": "0.34%",
"tm": "2023-03-16 00:00:00"
}
],
"info": {
"period": "1d",
"st": "2023-03-18 15:37:12 UTC",
"cc": 1
}
}
You want to know about the historical exchange prices to compare the latest exchange price with the previous rates to watch the market. In our forex history API we provide the historical exchange price data for all supported symbols. Old prices are available for most symbols all the way back to the year of 1995 in 1d and above time frame, 1m, 5m and less historical data upto 6months. You can see the historical rates by appending a date (format YYYY-MM-DD) in API URL with the base URL and specify the period parameter values: {1m,5m, 30m, 1h, 2h,4h, 5h, 1d, 1w, month}
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, pivot points. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
from
= Any supported format When you access history API and you are looking for any historical data from a specific date, you need to specify date between from/to date by using (from,to) parameter
Default: none
Valid Format 1: YYYY-MM-DD E.g: 2018-01-01
Valid Format 2: YYYY-MM-DD E.g: 1661990400 // Unix format
Valid Format 3: YYYY-MM-DDTHour:Min E.g: 2018-01-01T12:30
When you not set FROM and TO parameters, then it will return latest 300 candles.
What is T in date format!!! It is nothing, we use it to remove space between time. It has no use and no validation.
to
= Same as from
level
= Any supported format when you want more history candles in 1 request.
Default: 1
Valid Values: 1, 2, and 3
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Below API does not support multiple IDs in URL as a Parameter. You have to send only one ID or Symbol name at a time with the request. And 2h, 4h return maximum 300 candles in 1 request.
1 credit count for each 300 candles returned (rounded up).
We provide a simple and easy to use latest historical API which returns the previous 900 candle which is the latest and easy to watch the latest market. Use "Level" paramerter to control number of candles. level=1 return 300 candles,. level=2 return 600 candles, level=3 return 900 candles.
Latest 300 candles
If you always need the latest history upto 900 candles, then you must have to take care of From/To parameter, that should not be assigned and remove them from URL, Then it will work better
Between Specific Date-Time
After you request on API, It would give you the response in JSON format which you can change, it is up to your need.
status: boolean The status of this request's response. | ||||||
code: integer The code of this request's response. | ||||||
msg: string The massage of this request's response. | ||||||
results: array
| ||||||
info: array
|
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": {
"1679050800": {
"o": 1.06335,
"h": 1.064,
"l": 1.0616,
"c": 1.063,
"t": 1679050800,
"tm": "2023-03-17 11:00:00"
}
},
"info": {
"id": 1,
"decimal": 4,
"symbol": "EUR/USD",
"period": "1h",
"st": "2023-03-18 16:06:36 UTC",
"cc": 1
}
}
In financial markets, a pivot point is a support/resistance level is a helper that is used by traders as a possible indicator of market movement. A pivot point is calculated as an average of significant prices (high, low, close) from the performance of a market in the prior trading period. It will indicate to you about the Resistances and supports in a forex trading.
Our PP, resistance and support points are calculated on previous high open close.
Below API does not support multiple ids in URL as a parameter. Send only 1 ID/Symbol name at a time with API request.
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, pivot points. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
API
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": {
"classic": {
"pp": 0.9848,
"R1": 0.9896,
"R2": 0.9929,
"R3": 0.9978,
"S1": 0.9815,
"S2": 0.9766,
"S3": 0.9733
},
"fibonacci": {...}
"camarilla": {...}
"woodie": {...}
"demark": {...}
},
"overall": {
"summary": "Neutral",
"change_at": "2023-03-18 12:45:09",
"msg": "summary based on all SMA,EMA,Pivot Points and indicators"
},
"info": {
"id": 2,
"decimal": 4,
"symbol": "EUR/CHF",
"period": "1d",
"disclaimer": "...",
"update": "just now",
"update_time": "2023-03-18 16:58:53 UTC",
"st": "2023-03-18 16:58:53 UTC",
"cc": 1
}
}
Moving Average (MA) is a trend indicator. MA lines are used by traders to check the average market value on the base of previous (5,10,20,50,100,200) candles. This API can help you to know MA values of the last active candle. Now you dont need to worry about, how to calculate simple MA (moving average) lines, how to SMA calculated, what is moving averages rules to calculate, so we take care of all these problem for you, we calculate all SMA and EMA values for you. if you wanted to get SMA of a 5min or 7days period, you would add the period min/days in period parameter.
Response Contains "Simple Moving Average(SMA)" and "Exponential Moving Average(EMA)" values
Below API does not support multiple ids in URL as a parameter. Send only 1 ID/Symbol name at a time with API request.
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, Moving Averages. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
API
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": {
"count": {
"Total_Buy": 4,
"Total_Sell": 6,
"Total_Neutral": 2
},
"ma_avg": {
"SMA": {
"MA5": {
"v": 0.95641,
"s": "Buy"
},
"MA10": {
"v": 0.95591,
"s": "Buy"
},
"MA20": {...},
"MA50": {...},
"MA100": {...},
"MA200": {...}
},
"EMA": {...},
"summary": "Neutral"
},
"overall": {
"summary": "Neutral",
"change_at": "2023-08-30 18:23:22",
"msg": "summary based on all SMA,EMA,Pivot Points and indicators"
}
},
"info": {
"id": 2,
"decimal": 4,
"symbol": "EUR/CHF",
"period": "1d",
"disclaimer": "...",
"update": "just now",
"update_time": "2023-08-30 18:46:14 UTC",
"st": "2023-08-30 18:46:14 UTC",
"cc": 1
}
}
Technical indicators are calculated with the help of top forex indicators (MA,RSI,STOCH,ATR etc). The Collection of Indicators Powerful & Profitable Forex Trading Strategies and Systems that work. It is developed to get the latest technical indicator values. In response, you will get the values of top indicators. Technical indicator values are the real-time updated value. The current data point derives the new and latest data point of a given exchange pair of currency.
Below API does not support multiple ids in URL as a parameter. Send only 1 ID/Symbol name at a time with API request.
api_key
= Your_API_Key id
= any valid ID To get all list of Forex ID's or Symbols use "List API" below.
symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
period
= Any supported time period It is required in a few endpoints API request, when you request for candle prices, history, signals, moving average lines, Technical Indicator. So you need to specify which time frames data you want.
Default: 1h
Valid Values: 1m, 5m, 15m, 30m, 1h, 2h, 4h, 5h, 1d, 1w, month
output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
API
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": {
"count": {
"Total_Buy": 7,
"Total_Sell": 0,
"Total_Neutral": 0
},
"indicators": {
"RSI14": {
"v": 51.9678,
"s": "Buy"
},
"STOCH9_6": {
"v": 43.0012,
"s": "Buy"
},
"STOCHRSI14": {...},
"MACD12_26": {...},
"WilliamsR": {...},
"CCI14": {...},
"ATR14": {...},
"UltimateOscillator": {...},
"ROC": {...},
"summary": "Strong Buy"
},
"overall": {
"summary": "Neutral",
"change_at": "2023-08-30 18:23:22",
"msg": "summary based on all SMA,EMA,Pivot Points and indicators"
}
},
"info": {
"id": 2,
"decimal": 4,
"symbol": "EUR/CHF",
"period": "1d",
"disclaimer": "...",
"update": "just now",
"update_time": "2023-08-30 19:14:02 UTC",
"st": "2023-08-30 19:14:02 UTC",
"cc": 1
}
}
Get real-time indicators as economic events are announced and see the immediate impact of global markets, including past, forecast, and actual figures.
1 credit count for each 50 events returned (rounded up).
api_key
= Your_API_Key symbol
= any valid short name At least one "id" or "symbol" parameter is required. If ID parameter exist in request than symbol parameter will be ignored. You can use any 1 parameter (ID or Symbol) both will return same result.
Our Symbol is pair of 2 currencies, or "short name" combination of 2 currencies.
country
= Any valid country e.g: US,JP,GB from
= Supported format: 2023-08-30 to
= Supported format: 2023-08-30 output
= Set your API response format. Default: json
Valid Values: json, jsonp, object, xml, serialize and array
Get All Event Today date
Get All Event Specific date
Get by Currency Today
Get by Country Today
{
"status": true,
"code": 200,
"msg": "Successfully",
"results": [
{
"id": 326627,
"event": "JPRSMM",
"title": "Retail Sales MoM",
"indicator": "Retail Sales MoM",
"comment": "...",
"country": "JP",
"currency": "JPY",
"importance": 0,
"period": "Jul",
"actual": "",
"forecast": "",
"previous": -0.4,
"source": "Ministry of Economy Trade and Industry (METI)",
"scale": "",
"unit": "",
"date": "2023-08-30 23:50:00"
},
],
"info": {
"from": "2023-08-30 00:00:00",
"to": "2023-08-30 23:59:00",
"st": "2023-08-30 19:25:37 UTC",
"cc": 1
}
}