I am trying to download data that is in a CSV format from a query on the project tycho website. I have the following: filename response temp; proc http url="https://www.tycho.pitt.edu/api/query?apikey=MYAPIKEYHERE&ConditionName=Measles&CountryISO=US" out=response; run; I have seen answers to other similar questions that show how to do the next step (libname statement) with JSON formats, but not with CSV. Does anyone know how to do this? Also, this is the first time I have worked with APIs. After the CSV is imported, do I just continue to analyze the data with data steps and procedures? Thanks!
... View more