Hello all,
I am trying to extract the exchange rate from CurrencyConverterAPI.com.
Is there a way I can split this from a JSON object into a key/value pair and store it in an excel table?
My desired output would be an excel table created and stored in onedrive/sharepoint.
Regards
Hidayat
Here is my flow:

Below is the sample output of the parse JSON.
I need the content of the rates.
{
"success": true,
"timestamp": 1636638677,
"base": "EUR",
"date": "2021-11-11",
"rates": {
"AED": 4.21072,
"AFN": 105.088368,
"ALL": 122.482133,
"AMD": 545.149901,
"ANG": 2.065012,
"AOA": 684.248748,
"ARS": 114.831972
}
}
Below is the compose output after executing parse JSON..
{
"AED": 4.21072,
"AFN": 105.088368,
"ALL": 122.482133,
"AMD": 545.149901
}
