{"id":890,"date":"2020-04-08T10:33:15","date_gmt":"2020-04-08T10:33:15","guid":{"rendered":"https:\/\/www.webhozz.com\/code\/?p=890"},"modified":"2021-04-01T12:43:00","modified_gmt":"2021-04-01T12:43:00","slug":"json-di-python","status":"publish","type":"post","link":"https:\/\/www.webhozz.com\/code\/json-di-python\/","title":{"rendered":"JSON Pada Python"},"content":{"rendered":"\n<p>JSON\nadalah sintaks untuk menyimpan dan bertukar data.<\/p>\n\n\n\n<p>JSON\nadalah teks, ditulis dengan notasi objek JavaScript.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>JSON dengan Python<\/strong><\/h4>\n\n\n\n<p>Python\nmemiliki paket built-in yang disebut&nbsp;<code>json<\/code>,\nyang dapat digunakan untuk bekerja dengan data JSON.<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Impor modul json:<\/p>\n\n\n\n<p>import&nbsp;json<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Parse JSON &#8211; <\/strong><strong>Mengubah<\/strong><strong> dari JSON ke\nPython<\/strong><\/h4>\n\n\n\n<p>Jika kamu memiliki string JSON, kamu dapat menguraikannya dengan\nmenggunakan&nbsp;metode <code>json.loads()<\/code>ini.<\/p>\n\n\n\n<p>Hasilnya akan\nmenjadi&nbsp;<a href=\"https:\/\/www.w3schools.com\/python\/python_dictionaries.asp\">kamus di Python<\/a>&nbsp;.<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Menngubah dari JSON ke Python:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport json\n\n# some JSON:\nx =  '{ &quot;name&quot;:&quot;John&quot;, &quot;age&quot;:30, &quot;city&quot;:&quot;New York&quot;}'\n\n# parse x:\ny = json.loads(x)\n\n# the result is a Python dictionary:\nprint(y&#x5B;&quot;age&quot;])\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Mengubah<\/strong><strong> dari Python ke\nJSON<\/strong><\/h4>\n\n\n\n<p>Jika kamu memiliki objek Python, kamu bisa mengubahnya menjadi string\nJSON dengan menggunakan&nbsp;metode <code>json.dumps()<\/code>ini.<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Mengubah dari Python ke JSON:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport json\n\n# a Python object (dict):\nx = {\n  &quot;name&quot;: &quot;John&quot;,\n  &quot;age&quot;: 30,\n  &quot;city&quot;: &quot;New York&quot;\n}\n\n# convert into JSON:\ny = json.dumps(x)\n\n# the result is a JSON string:\nprint(y)\n<\/pre><\/div>\n\n\n<p>Kamu bisa mengubah objek Python dari tipe berikut,\nmenjadi string JSON:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>dict<\/li><li>list<\/li><li>tuple<\/li><li>string<\/li><li>int<\/li><li>float<\/li><li>True<\/li><li>False<\/li><li>None<\/li><\/ul>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Mengubah objek Python menjadi string JSON, dan cetak nilainya:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport json\n\nprint(json.dumps({&quot;name&quot;: &quot;John&quot;, &quot;age&quot;: 30}))\nprint(json.dumps(&#x5B;&quot;apple&quot;, &quot;bananas&quot;]))\nprint(json.dumps((&quot;apple&quot;, &quot;bananas&quot;)))\nprint(json.dumps(&quot;hello&quot;))\nprint(json.dumps(42))\nprint(json.dumps(31.76))\nprint(json.dumps(True))\nprint(json.dumps(False))\nprint(json.dumps(None))\n<\/pre><\/div>\n\n\n<p>Saat kamu mengubah dari Python ke JSON, objek Python diubah menjadi JSON (JavaScript):<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Python<\/strong> <\/td><td><strong>JSON<\/strong> <\/td><\/tr><tr><td>Dict <\/td><td>Object <\/td><\/tr><tr><td>List <\/td><td>Array <\/td><\/tr><tr><td>Tuple <\/td><td>Array <\/td><\/tr><tr><td>Str <\/td><td>String <\/td><\/tr><tr><td>Int <\/td><td>Number <\/td><\/tr><tr><td>Float <\/td><td>Number <\/td><\/tr><tr><td>True <\/td><td>true <\/td><\/tr><tr><td>False <\/td><td>false <\/td><\/tr><tr><td>None <\/td><td>null <\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Mengubah objek Python yang berisi semua tipe data legal:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport json\n\nx = {\n  &quot;name&quot;: &quot;John&quot;,\n  &quot;age&quot;: 30,\n  &quot;married&quot;: True,\n  &quot;divorced&quot;: False,\n  &quot;children&quot;: (&quot;Ann&quot;,&quot;Billy&quot;),\n  &quot;pets&quot;: None,\n  &quot;cars&quot;: &#x5B;\n    {&quot;model&quot;: &quot;BMW 230&quot;, &quot;mpg&quot;: 27.5},\n    {&quot;model&quot;: &quot;Ford Edge&quot;, &quot;mpg&quot;: 24.1}\n  ]\n}\n\nprint(json.dumps(x))\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Hasil Format<\/strong><\/h4>\n\n\n\n<p>Contoh di\natas membuat\nstring JSON, tetapi tidak mudah dibaca, tanpa indentansi dan jeda baris.<\/p>\n\n\n\n<p>Metode\n<code>json.dumps()<\/code><code> <\/code>memiliki\nparameter untuk membuatnya lebih mudah untuk membaca hasilnya:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Gunakan&nbsp;parameter\n<code>indent<\/code><code> <\/code>untuk menentukan jumlah indentasi:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\njson.dumps(x, indent=4)\n<\/pre><\/div>\n\n\n<p>Kamu juga\ndapat mendefinisikan pemisah, nilai default adalah (&#8220;,&#8221;,\n&#8220;:&#8221;), yang berarti menggunakan koma dan spasi untuk memisahkan setiap\nobjek, dan titik dua serta ruang untuk memisahkan kunci dari nilai:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Gunakan&nbsp;parameter\n<code>separators<\/code><code> <\/code>untuk mengubah pemisah default:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\njson.dumps(x, indent=4, separators=(&quot;. &quot;, &quot; = &quot;))\n<\/pre><\/div>\n\n\n<h4 class=\"wp-block-heading\"><strong>Hasil Order<\/strong><\/h4>\n\n\n\n<p>Metode\n<code>json.dumps()<\/code><code> <\/code>memiliki\nparameter untuk memesan kunci dalam hasil:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Gunakan&nbsp;parameter\n<code>sort_keys<\/code><code> <\/code>untuk menentukan apakah hasilnya harus diurutkan atau tidak:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\njson.dumps(x, indent=4, sort_keys=True)\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>JSON adalah sintaks untuk menyimpan dan bertukar data. JSON adalah teks, ditulis dengan notasi objek JavaScript. JSON dengan Python Python memiliki paket built-in yang disebut&nbsp;json,<\/p>\n","protected":false},"author":1,"featured_media":806,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-890","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Belajar JSON Pada Python - WebHozz Code<\/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:\/\/www.webhozz.com\/code\/json-di-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Belajar JSON Pada Python - WebHozz Code\" \/>\n<meta property=\"og:description\" content=\"JSON adalah sintaks untuk menyimpan dan bertukar data. JSON adalah teks, ditulis dengan notasi objek JavaScript. JSON dengan Python Python memiliki paket built-in yang disebut&nbsp;json,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhozz.com\/code\/json-di-python\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHozz Code\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-08T10:33:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-01T12:43:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/04c781607b26b4f4f052684571acc0c6\"},\"headline\":\"JSON Pada Python\",\"datePublished\":\"2020-04-08T10:33:15+00:00\",\"dateModified\":\"2021-04-01T12:43:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/\"},\"wordCount\":272,\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/Python.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/\",\"name\":\"Belajar JSON Pada Python - WebHozz Code\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/Python.jpg\",\"datePublished\":\"2020-04-08T10:33:15+00:00\",\"dateModified\":\"2021-04-01T12:43:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/04c781607b26b4f4f052684571acc0c6\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/Python.jpg\",\"contentUrl\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/Python.jpg\",\"width\":750,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/json-di-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JSON Pada Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#website\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/\",\"name\":\"WebHozz Code\",\"description\":\"Tutorial Web &amp; Pemrograman Indonesia\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/04c781607b26b4f4f052684571acc0c6\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Belajar JSON Pada Python - WebHozz Code","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:\/\/www.webhozz.com\/code\/json-di-python\/","og_locale":"en_US","og_type":"article","og_title":"Belajar JSON Pada Python - WebHozz Code","og_description":"JSON adalah sintaks untuk menyimpan dan bertukar data. JSON adalah teks, ditulis dengan notasi objek JavaScript. JSON dengan Python Python memiliki paket built-in yang disebut&nbsp;json,","og_url":"https:\/\/www.webhozz.com\/code\/json-di-python\/","og_site_name":"WebHozz Code","article_published_time":"2020-04-08T10:33:15+00:00","article_modified_time":"2021-04-01T12:43:00+00:00","og_image":[{"width":750,"height":400,"url":"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#article","isPartOf":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/"},"author":{"name":"admin","@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/04c781607b26b4f4f052684571acc0c6"},"headline":"JSON Pada Python","datePublished":"2020-04-08T10:33:15+00:00","dateModified":"2021-04-01T12:43:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/"},"wordCount":272,"image":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg","articleSection":["Python"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/","url":"https:\/\/www.webhozz.com\/code\/json-di-python\/","name":"Belajar JSON Pada Python - WebHozz Code","isPartOf":{"@id":"https:\/\/www.webhozz.com\/code\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#primaryimage"},"image":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg","datePublished":"2020-04-08T10:33:15+00:00","dateModified":"2021-04-01T12:43:00+00:00","author":{"@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/04c781607b26b4f4f052684571acc0c6"},"breadcrumb":{"@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhozz.com\/code\/json-di-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#primaryimage","url":"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg","contentUrl":"https:\/\/www.webhozz.com\/code\/wp-content\/uploads\/2020\/01\/Python.jpg","width":750,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhozz.com\/code\/json-di-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhozz.com\/code\/"},{"@type":"ListItem","position":2,"name":"JSON Pada Python"}]},{"@type":"WebSite","@id":"https:\/\/www.webhozz.com\/code\/#website","url":"https:\/\/www.webhozz.com\/code\/","name":"WebHozz Code","description":"Tutorial Web &amp; Pemrograman Indonesia","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhozz.com\/code\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/04c781607b26b4f4f052684571acc0c6","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.webhozz.com\/code\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/890","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/comments?post=890"}],"version-history":[{"count":3,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/890\/revisions"}],"predecessor-version":[{"id":1124,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/890\/revisions\/1124"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/media\/806"}],"wp:attachment":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/media?parent=890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/categories?post=890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/tags?post=890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}