How do I parse large json from an API?
I am trying to create a data table from an API response but the JSON that is output won't process and I think the file is too big. It's about 20 MB and the final data table is ~7000 rows and ~115 columns. Is this just too big to parse? I also have the option of getting a csv file from the API or output as a text string. I work with the developers that wrote the API so we can make it output wha...