my android application is using external financial API. I want store these JSON data in my firebase DB. so I want my customer get data from my firebase server. is there easy way?
For example.. https://www.worldtradingdata.com/api/v1/stock?symbol=AAPL
{
"symbols_requested":1,
"symbols_returned":1,
"data":[
{
"symbol":"AAPL",
"name":"Apple\r\nInc.",
"currency":"USD",
"price":"153.07",
"price_open":"150.27",
"day_high":"153.39",
"day_low":"150.05",
"52_week_high":"233.47",
"52_week_low":"142.00",
"day_change":"3.07",
"change_pct":"2.05",
"close_yesterday":"150.00",
"market_cap":"723990979852",
"volume":"7034",
"volume_avg":"46777427",
"shares":"4729803000",
"stock_exchange_long":"NASDAQ\r\nStock\r\n Exchange",
"stock_exchange_short":"NASDAQ",
"timezone":"EST",
"timezone_name":"America/New_York",
"gmt_offset":"-18000",
"last_trade_time":"2019-01-15\r\n 16:00:01"
}
]
}
then I want store these JSON data in my firebase server.