{"id":6082,"date":"2022-09-01T07:39:44","date_gmt":"2022-09-01T02:09:44","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/"},"modified":"2022-09-01T07:39:44","modified_gmt":"2022-09-01T02:09:44","slug":"solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/","title":{"rendered":"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-52682267\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"52682267\" data-parentid=\"52681045\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p><strong>Split:<\/strong><\/p>\n<p>Now you have obtained the JSON string you can parse with Split function. Here I am reading the JSON in the comments from a cell<\/p>\n<pre><code>Option Explicit\nPublic Sub GetExchangeRate()\n    Dim json As String\n    json = [A1]\n    Debug.Print Split(Split(json, \"\"\"5. Exchange Rate\"\": \")(1), \",\")(0)\nEnd Sub\n<\/code><\/pre>\n<hr>\n<p><strong>JSON Parser:<\/strong><\/p>\n<p>Here you can use a JSON parser, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/VBA-tools\/VBA-JSON\/blob\/master\/JsonConverter.bas\">JSONConverter.bas<\/a> and then add a reference via VBE &gt; Tools &gt; References &gt; Microsoft Scripting Dictionary<\/p>\n<pre><code>Public Sub GetRate()\n    Dim jsonStr As String, json As Object\n    jsonStr = [A1]\n    Debug.Print JsonConverter.ParseJson(jsonStr)(\"Realtime Currency Exchange Rate\")(\"5. Exchange Rate\")\nEnd Sub\n<\/code><\/pre>\n<p>This is the path to your desired change rate:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>The initial object is a dictionary containing another dictionary. Dictionaries are denoted by <code>{}<\/code>. You access the first dictionary with the key <code>Realtime Currency Exchange Rate<\/code>  and then the required value, from the inner dictionary, by the associated key: <code>5. Exchange Rate<\/code><\/p>\n<hr>\n<p><strong>Whole request with JSON parser:<\/strong><\/p>\n<pre><code>Option Explicit\nPublic Sub GetRate2()\n    Dim URL As String, json As String, http As Object\n    URL = \"https:\/\/www.alphavantage.co\/query?function=CURRENCY_EXCHANGE_RATE&amp;from_currency=EUR&amp;to_currency=USD&amp;apikey=yourAPIkey\"\n    Set http = CreateObject(\"MSXML2.XMLHTTP\")\n    With http\n        .Open \"GET\", URL, False\n        .setRequestHeader \"If-Modified-Since\", \"Sat, 1 Jan 2000 00:00:00 GMT\"\n        .send\n        json = .responseText\n    End With\n    Debug.Print JsonConverter.ParseJson(json)(\"Realtime Currency Exchange Rate\")(\"5. Exchange Rate\")\nEnd Sub\n<\/code><\/pre>\n<hr>\n<p>As an UDF:<\/p>\n<pre><code>Option Explicit\nPublic Sub Test()\n    Debug.Print CurrencyConverter(\"EUR\", \"USD\")\nEnd Sub\n\nPublic Function CurrencyConverter(ByVal FromCurrency, ByVal ToCurrency) As String\n    Dim URL As String, json As String, http As Object\n    URL = \"https:\/\/www.alphavantage.co\/query?function=CURRENCY_EXCHANGE_RATE&amp;from_currency=\" &amp; FromCurrency &amp; \"&amp;to_currency=\" &amp; ToCurrency &amp; \"&amp;apikey=yourAPIkey\"\n\n    Set http = CreateObject(\"MSXML2.XMLHTTP\")\n    With http\n        .Open \"GET\", URL, False\n        .setRequestHeader \"If-Modified-Since\", \"Sat, 1 Jan 2000 00:00:00 GMT\"\n        .send\n        json = .responseText\n    End With\n    CurrencyConverter = JsonConverter.ParseJson(json)(\"Realtime Currency Exchange Rate\")(\"5. Exchange Rate\")\n'CurrencyConverter = Replace$(JsonConverter.ParseJson(json)(\"Realtime Currency Exchange Rate\")(\"5. Exchange Rate\"), Application.DecimalSeparator, \".\") \nEnd Function\n<\/code><\/pre>\n<p>To use split function replace penultimate function line with<\/p>\n<pre><code>CurrencyConverter = Replace$(Split(Split(json, \"\"\"5. Exchange Rate\"\": \")(1), \",\")(0), Chr$(34), vbNullString)\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Split: Now you have obtained the JSON string you can parse with Split function. Here I am reading the JSON in the comments from a cell Option Explicit Public Sub GetExchangeRate() Dim json As String json = [A1] Debug.Print Split(Split(json, &#8220;&#8221;&#8221;5. Exchange Rate&#8221;&#8221;: &#8220;)(1), &#8220;,&#8221;)(0) End Sub JSON Parser: Here you can use a &#8230; <a title=\"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\" aria-label=\"More on [Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[400,346,939,401,760],"class_list":["post-6082","post","type-post","status-publish","format-standard","hentry","category-solved","tag-excel","tag-html","tag-url","tag-vba","tag-web-scraping"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Split: Now you have obtained the JSON string you can parse with Split function. Here I am reading the JSON in the comments from a cell Option Explicit Public Sub GetExchangeRate() Dim json As String json = [A1] Debug.Print Split(Split(json, &quot;&quot;&quot;5. Exchange Rate&quot;&quot;: &quot;)(1), &quot;,&quot;)(0) End Sub JSON Parser: Here you can use a ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-01T02:09:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]\",\"datePublished\":\"2022-09-01T02:09:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\"},\"wordCount\":150,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\",\"keywords\":[\"excel\",\"html\",\"url\",\"vba\",\"web-scraping\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\",\"name\":\"[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\",\"datePublished\":\"2022-09-01T02:09:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb","og_description":"[ad_1] Split: Now you have obtained the JSON string you can parse with Split function. Here I am reading the JSON in the comments from a cell Option Explicit Public Sub GetExchangeRate() Dim json As String json = [A1] Debug.Print Split(Split(json, \"\"\"5. Exchange Rate\"\": \")(1), \",\")(0) End Sub JSON Parser: Here you can use a ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/","og_site_name":"JassWeb","article_published_time":"2022-09-01T02:09:44+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]","datePublished":"2022-09-01T02:09:44+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/"},"wordCount":150,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png","keywords":["excel","html","url","vba","web-scraping"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/","name":"[Solved] Get exchange rates - help me update URL in Excel VBA code that used to work [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png","datePublished":"2022-09-01T02:09:44+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/09\/Solved-Get-exchange-rates-help-me-update-URL-in.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-get-exchange-rates-help-me-update-url-in-excel-vba-code-that-used-to-work-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Get exchange rates &#8211; help me update URL in Excel VBA code that used to work [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6082","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=6082"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/6082\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=6082"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=6082"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=6082"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}