Primero: 

 

https://si3.bcentral.cl/SieteRestWS/SieteRestWS.ashx?user=768951128&pass=xrVfH33kpqJ9&firstdate=2022-10-01&lastdate=2022-10-03&timeseries=F073.UFF.PRE.Z.D&function=GetSeries

 

Segundo

 

 

https://si3.bcentral.cl/SieteRestWS/SieteRestWS.ashx?user=768951128&pass=xrVfH33kpqJ9&frequency=daily&function= F073.UFF.PRE.Z.D

 

tercero

 

import requests import pandas as pd url = "https://si3.bcentral.cl/SieteRestWS/SieteRestWS.ashx?user=768951128&pass=xrVfH33kpqJ9&firstdate=2021-01-01&lastdate=2021-01-31&timeseries=F022.TPM.TIN.D001.NO.Z.D&function=GetSeries" response = requests.get(url) response = response.json() response = response["Series"]["Obs"] df_data = pd.DataFrame(response) df_data.head()