MyRadar API Weather Forecasting Suite

API documentation and tutorials designed to jump start your weather application development needs.

Quick Start

   MYRADAR_API_KEY = "YOUR_KEY"
   headers = {
    "Subscription-Key":MYRADAR_API_KEY
    }

   url = f"https://api.myradar.dev/v1/timeseries/point?latlons=[[41.5,-105.1],[36.1,-96.34]]&as_csv=true"
   c = requests.get(url, stream=True, headers=headers) # make a request
   df = pd.read_csv(c.raw, parse_dates=['valid_time'])

Tutorials