{"id":91501,"date":"2017-07-31T05:37:27","date_gmt":"2017-07-31T05:37:27","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=91501"},"modified":"2017-07-31T05:37:27","modified_gmt":"2017-07-31T05:37:27","slug":"fetch-records-through-rest-api-in-visualforce-page-using-jquery","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/","title":{"rendered":"How to fetch records through REST API in Visualforce Page using JQuery"},"content":{"rendered":"<p>In this blog we will learn how to fetch records through REST API in visualforce page using jquery. Let&#8217;s get started.<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Fetch Records through REST API in Visualforce page using Jquery<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>The code is mentioned below:<\/p>\n<pre class=\"brush:xml\">&lt;apex:page&gt;\r\n  &lt;!-- \r\n        \/**\r\n         * Webkul Software.\r\n         *\r\n         * @category  Webkul\r\n         * @author    Webkul\r\n         * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n         * @license   https:\/\/store.webkul.com\/license.html\r\n         *\/\r\n     --&gt;\r\n  &lt;apex:includeScript value=\"https:\/\/ajax.aspnetcdn.com\/ajax\/jQuery\/jquery-1.7.2.min.js\"\/&gt;\r\n  &lt;script&gt;\r\n    jQuery(document).ready(function($) {\r\n      \/\/ Get Accounts via the REST API\r\n      $.ajax('\/services\/data\/v39.0\/query?q=SELECT+Name+FROM+Account+LIMIT+10',\r\n        {\r\n          beforeSend: function(xhr) {\r\n            \/\/ Set the OAuth header from the session ID\r\n            xhr.setRequestHeader('Authorization', 'Bearer {!$Api.Session_ID}');\r\n          },\r\n          success: function(response) {\r\n            \/\/ Append the records to HTML list\r\n            $.each(response.records, function(index, record) {\r\n              $('#accountList').append('&lt;li&gt;'+record.Name+'&lt;\/li&gt;');\r\n            });\r\n          },\r\n          error: function(jqXHR, textStatus, errorThrown) {\r\n            \/\/ Error\r\n            alert(jqXHR.status + ': ' + errorThrown);\r\n          }\r\n        }\r\n      );\r\n    });\r\n  &lt;\/script&gt;\r\n  &lt;h1&gt;Test REST API&lt;\/h1&gt;\r\n  &lt;div&gt;Accounts list:&lt;\/div&gt;\r\n  &lt;ul id=\"accountList\"&gt;\r\n  &lt;\/ul&gt;\r\n&lt;\/apex:page&gt;<\/pre>\n<\/div>\n<\/div>\n<div class=\"panel panel-success\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Output<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1.png\"><img decoding=\"async\" class=\"alignnone wp-image-91515 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1.png\" alt=\"fetch records through REST API in visualforce page using jquery\" width=\"1276\" height=\"384\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1.png 1276w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1-250x75.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1-300x90.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1-768x231.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-1-1200x361.png 1200w\" sizes=\"(max-width: 1276px) 100vw, 1276px\" loading=\"lazy\" \/><\/a><\/p>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><i class=\"fa fa-user\"><\/i>Support<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>That\u2019s all for how to fetch the records through REST API in visualforce page using jquery, still have any issue feel free to add a ticket and let us know your views to make the code better <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we will learn how to fetch records through REST API in visualforce page using jquery. Let&#8217;s get started. Fetch Records through REST API in Visualforce page using Jquery The code is mentioned below: &lt;apex:page&gt; &lt;!&#8211; \/** * Webkul Software. * * @category Webkul * @author Webkul * @copyright Copyright (c) 2010-2016 Webkul <a href=\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":104,"featured_media":91591,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3128,1887],"tags":[5200],"class_list":["post-91501","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api-support","category-salesforce","tag-rest-api-using-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to fetch records through REST API in Visualforce Page using JQuery<\/title>\n<meta name=\"description\" content=\"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let&#039;s get started.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to fetch records through REST API in Visualforce Page using JQuery\" \/>\n<meta property=\"og:description\" content=\"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let&#039;s get started.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-31T05:37:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aakanksha Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aakanksha Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\"},\"headline\":\"How to fetch records through REST API in Visualforce Page using JQuery\",\"datePublished\":\"2017-07-31T05:37:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\"},\"wordCount\":96,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png\",\"keywords\":[\"rest api using jquery\"],\"articleSection\":[\"API Support\",\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\",\"url\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\",\"name\":\"How to fetch records through REST API in Visualforce Page using JQuery\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png\",\"datePublished\":\"2017-07-31T05:37:27+00:00\",\"description\":\"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let's get started.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to fetch records through REST API in Visualforce Page using JQuery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to fetch records through REST API in Visualforce Page using JQuery","description":"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let's get started.","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:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/","og_locale":"en_US","og_type":"article","og_title":"How to fetch records through REST API in Visualforce Page using JQuery","og_description":"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let's get started.","og_url":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-31T05:37:27+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80"},"headline":"How to fetch records through REST API in Visualforce Page using JQuery","datePublished":"2017-07-31T05:37:27+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/"},"wordCount":96,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png","keywords":["rest api using jquery"],"articleSection":["API Support","Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/","url":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/","name":"How to fetch records through REST API in Visualforce Page using JQuery","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png","datePublished":"2017-07-31T05:37:27+00:00","description":"In this blog we will learn how to fetch records through REST API in visualforce page using jquery in salesforce. Let's get started.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/reswebkul.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/fetch-records-through-rest-api-in-visualforce-page-using-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to fetch records through REST API in Visualforce Page using JQuery"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91501","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=91501"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91501\/revisions"}],"predecessor-version":[{"id":91595,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91501\/revisions\/91595"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/91591"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=91501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=91501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=91501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}