{"id":89,"date":"2019-09-15T07:00:13","date_gmt":"2019-09-15T07:00:13","guid":{"rendered":"http:\/\/sumitjangid.com\/?p=89"},"modified":"2019-09-15T07:00:13","modified_gmt":"2019-09-15T07:00:13","slug":"reading-json","status":"publish","type":"post","link":"http:\/\/sumitjangid.com\/index.php\/2019\/09\/15\/reading-json\/","title":{"rendered":"Reading Json"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>public double ConvertRate(double amount=5, string from=\"USD\", string to=\"AED\")\n        {\n            double x;\n            try\n            {\n            string str= \"https:\/\/free.currconv.com\/api\/v7\/convert?q=\"+from+\"_\"+to+\"&amp;compact=ultra&amp;apiKey=f32acb5e280413fa3277\";\n            var httpclient = new HttpClient();\n            var response = httpclient.GetAsync(str);\n            var resp = response.Result.Content.ReadAsStringAsync();\n            var data = (JObject)JsonConvert.DeserializeObject(resp.Result.ToString());\n            return data.First.First.Value&lt;double>();\n            }\n            catch (Exception E)\n            {\n                return 0;\n            }\n            \n            \/\/return (x*amount).ToString();\n        }<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3,5,4,2],"tags":[],"_links":{"self":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/89"}],"collection":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/comments?post=89"}],"version-history":[{"count":1,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/89\/revisions"}],"predecessor-version":[{"id":90,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/posts\/89\/revisions\/90"}],"wp:attachment":[{"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/media?parent=89"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/categories?post=89"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/sumitjangid.com\/index.php\/wp-json\/wp\/v2\/tags?post=89"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}