Now I am getting this JSON from API:
{\"supplyPrice\": { \"CAD\": 78, \"CHF\": 54600.78, \"USD\": 20735.52 }}
But
Once look at this.. may help you.
JSONObject json= json.getJSONObject("supplyPrice"); Iterator i = json.keys(); JSONArray jsonArray = new JSONArray(); while (i.hasNext()){ String key = (String) i.next(); jsonArray.put(json.get(key));