How to convert JSON data into table format online?
I don't know what web service you are using, but I would use the JSON.NET library to deserialize JSON into a collection of classes or into a dictionary if it is already a dictionary. Then iterate through the collection and just output a string for each element.
Here is an example using Newtonsoft.Json.
// Create a list of data that will be converted to a table. List
// Convert data into a table. It is more or less raw json.
String output = JsonConvert.SerializeObject(data); // Parse output to a Dictionary
Related Answers
How do I import JSON into Excel 2016?
I am trying to import a JSON file into Excel from a URL. I...
How to convert JSON into Excel online?
Are you looking for an easy way to convert json data into csv forma...
How do I convert a JSON file to CSV?
We often get requests from our clients to export their data in CSV forma...