We look at economy from multiple angles, including:
For example, Below is list of 70+ indicators with historical data for 20 years and predictions for the next 1 year
You can use API to get historical data for 20+ years and prediction for next 1 year
Click on indicator list to check the list of indicators.
API details are here: API Details
To access TINO IQ APIs - Your email has to be authenticated. Please follow following steps below:
import requests
url1='http://api.diyfire.org/get_macro_indicators' url1='http://api.diyfire.org/tino_iq_credit_ratings'
headers={ 'Content-Type': 'application/x-www-form-urlencoded' }
# the param1 is the parameter for accesssing the data from API http://api.diyfire.org/get_macro_indicators
params1={ 'email':'your verified email' 'indicators':'comma separated string containing indicators, 'start_date:'2022-2-2', 'end_date':'2023-7-2' } #the param2 is the parameter for accessing the data from API http://api.diyfire.org/tino_iq_credit_ratings/ params={ 'email':'your verified email 'symbol':'AMP' } response1=requests.post(url1,data=params1,headers=headers) response2=requests.post(url2,data=params2,headers=headers) print(response1.text) print(response2.text) |