I am new to programming and am trying to extract values from an API.
The connection to the API went fine, but I can't extract all pairs (Property:property Value) from a JavaScript object and put them into rows and columns in Google Sheets. Is this possible?
Example:
A | B | C |
---|---|---|
1 | 2022-10-31 | 431.0 |
2 | 2022-11-01 | 1177.0 |
3 | 2022-11-02 | 827.0 |
4 | 2022-11-03 | 878.0 |
5 | 2022-11-04 | 704.0 |
6 | 2022-11-05 | 909.0 |
7 | 2022-11-06 | 1135.0 |
... | ... | ... |
Thank you very much! Sorry if I made any mistakes, I'm just starting to learn!