I'm been working with JSON response from API, and have been able to return the data in a format that looks very JSON (which is good) and not struggling to get into DataFrame. Here is the code:
`message(typeof((results_response)))`
# character
`message(length((results_response)))`
# 1
`message(results_response)`
# {"central_time":{"0":"2020-04-06 15:47:00","1":"2020-04-06 15:47:15"},"Va_V":{"0":286.032,"1":286.207}}
The goal would not hard coding the keys, because there could be other responses when different keys. thank you!