{"id":3256,"date":"2023-12-12T10:51:20","date_gmt":"2023-12-12T10:51:20","guid":{"rendered":"https:\/\/meetanshi.com\/blog\/add-snowfall-effect-to-shopify\/"},"modified":"2025-12-22T12:50:27","modified_gmt":"2025-12-22T07:20:27","slug":"add-snowfall-effect-to-shopify","status":"publish","type":"post","link":"https:\/\/meetanshi.com\/blog\/add-snowfall-effect-to-shopify\/","title":{"rendered":"How to Add Snowfall Effect to Shopify? (Code Snippet)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Preparing your Shopify store for Christmas? Learn here to add snowfall effect to it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Adding the Shopify Snow Effect can make your store vibe with the winter shoppers. There are plenty of <a href=\"https:\/\/meetanshi.com\/blog\/best-shopify-apps-for-christmas-effects\/\">Shopify apps to add Christmas effects<\/a>, but if you\u2019re looking for a direct method, this post is for you.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I\u2019ll share the step-by-step method to add the Shopify snowfall effect, including code snippets. This tutorial does not require you to be a coding pro, but you need a basic understanding of editing Shopify theme codes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s clear a few basics.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Shopify Snowfall Effect?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Shopify snowfall effect is the visual animation added to stores during holiday season (like Christmas), typically during December and around New Year. It simulates falling snowflakes on the website, creating a festive and seasonal atmosphere for the shoppers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, here\u2019s what it looks like:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/1-shopify-snowfall-effect-example.png\" alt=\"Shopify Snowfall Effect example\" class=\"wp-image-41312\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">In this post, we\u2019ll learn to add free snow falling effect on Shopify without using any app.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add Snowfall Effect to Shopify?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can add Christmas snow falling effect to Shopify store by modifying the theme files and adding custom code snippets. Here\u2019s a quick overview of the process:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Step 1: Add a Custom Snippet<\/li>\n\n\n\n<li>Step 2: Define Settings Schema<\/li>\n\n\n\n<li>Step 3: Render the Snowfall Snippet in the theme.liquid File<\/li>\n\n\n\n<li>Step 4: Customize the Snowfall Effect in Shopify Theme Editor<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s go through each of the steps in detail.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"add-a-custom-snippet\">Step 1: Add a Custom Snippet<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In Shopify admin, go to <strong>Sales Channels &gt; Online Store &gt; Themes&nbsp;<\/strong>and click the three dots beside the customize button.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the dropdown menu, click \u201c<strong>Edit code<\/strong>.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/2-edit-shopify-theme-code-to-add-snowfall-effect.png\" alt=\"Edit shopify theme code to add snowfall effect\" class=\"wp-image-41438\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Now, the Shopify theme code editor will open.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the left menu, scroll down to the <strong>Snippets&nbsp;<\/strong>and click \u201c<strong>Add a new snippet<\/strong>.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Enter the snippet name as \u201cmeetanshi-snowfall-effect\u201d and click \u201c<strong>Done<\/strong>.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/3-create-a-new-snippet-for-snowfall.png\" alt=\"Create a new snippet for snowfall effect in Shopify\" class=\"wp-image-41439\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Now, paste the following code in the meetanshi-snowfall-effect.liquid file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW EnlighterJSRAW\" data-enlighter-language=\"js\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;script>     \n   document.addEventListener(\"DOMContentLoaded\", function() {     \n    var script = document.createElement('script');     \n    script.src = 'https:\/\/code.jquery.com\/jquery-3.6.0.min.js';     \n    script.type = 'text\/javascript';     \n    document.getElementsByTagName('head')[0].appendChild(script);     \n    script.onload = function() {     \n    var winterModeEnabled = {{ settings.winter_mode | default: true }};     \n         \n    if (winterModeEnabled) {     \n    var minSnowflakeSize = parseFloat({{ settings.min_snowflake_size | default: 0.6 }});     \n    var maxSnowflakeSize = parseFloat({{ settings.max_snowflake_size | default: 1.4 }});     \n    var gravity = parseFloat({{ settings.gravity | default: 1 }});     \n    var snowflakeColors = [     \n    '{{ settings.snowflake_color_1 | default: \"#ffffff\" }}',     \n    '{{ settings.snowflake_color_2 | default: \"#f5fbff\" }}',     \n    '{{ settings.snowflake_color_3 | default: \"#e7f5ff\" }}'     \n    ];     \n    \/\/ Clear previous snowflakes     \n    $('.snowflakes').remove();     \n    \/\/ Generate and append new snowflakes based on the \"Number of Snowflakes\" setting     \n    var $snowflakes = $('&lt;div class=\"snowflakes\" aria-hidden=\"true\">&lt;\/div>');     \n    var numSnowflakes = {{ settings.num_snowflakes | default: 50 }};     \n    for (var i = 0; i &lt; numSnowflakes; i++) {     \n    var size = minSnowflakeSize + Math.random() * (maxSnowflakeSize - minSnowflakeSize),     \n    opacity = Math.random() * 0.7 + 0.3,     \n    posX = Math.random() * 100,     \n    fallDelay = Math.random() * 5000,     \n    fallDuration = (Math.random() + 0.5) * 10000 \/ gravity;     \n    var snowflakeType = '{{ settings.snowflake_type | default: \"\u2744\" }}';     \n    var randomColor = snowflakeColors[Math.floor(Math.random() * snowflakeColors.length)];     \n    var $flake = $('&lt;div class=\"flake\">' + snowflakeType + '&lt;\/div>');     \n    $flake.css({     \n    fontSize: size + 'em',     \n    left: posX + '%',     \n    opacity: opacity,     \n    color: randomColor,     \n    animation: `fall ${fallDuration}ms linear ${fallDelay}ms infinite, rotate ${Math.random() > 0.5 ? 'normal' : 'reverse'} ${Math.random() * 20000 + 10000}ms infinite`     \n    }).appendTo($snowflakes);     \n    }     \n    $snowflakes.appendTo('body');     \n    }     \n    }     \n   });     \n&lt;\/script>     \n &lt;style>     \n .snowflakes .flake {     \n  position: fixed;     \n  top: -10px;     \n  z-index: 9999;     \n  color: #fff;     \n  pointer-events: none;     \n  user-select: none;     \n }     \n .snowflakes .flake.small { font-size: 0.6em; }     \n .snowflakes .flake.medium { font-size: 1em; }     \n .snowflakes .flake.large { font-size: 1.4em; }     \n @keyframes fall {     \n  0% { opacity: 0; }     \n  10% { opacity: 1; }     \n  90% { opacity: 1; }     \n  100% { top: 100%; opacity: 0; }     \n }     \n @keyframes rotate {     \n  0%, 100% { transform: rotate(0deg); }     \n  50% { transform: rotate(360deg); }     \n }     \n &lt;\/style><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">And click \u201c<strong>Save<\/strong>.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/4-save-snowfall-effect-snippet.png\" alt=\"Save snowfall effect snippet\" class=\"wp-image-41440\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"define-settings-schema\">Step 2: Define Settings Schema<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Next step is to define the configuration for the Shopify snowfall effect in the settings schema file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the left menu, search for \u201csettings\u201d and open the settings_schema.json file present inside the config folder.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/5-open-settings-schema-for-snowfall-effect.png\" alt=\"Open settings schema file in Shopify\" class=\"wp-image-41441\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Now, copy the following code and paste it right after the first \u201c[\u201d square bracket:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"name\": \"Meetanshi Snowfall Settings\",\n    \"settings\": [\n      {\n        \"type\": \"select\",\n        \"label\": \"Winter Mode\",\n        \"id\": \"winter_mode\",\n        \"default\": \"true\",\n        \"options\": [\n          {\n            \"value\": \"true\",\n            \"label\": \"On\"\n          },\n          {\n            \"value\": \"false\",\n            \"label\": \"Off\"\n          }\n        ]\n      },\n      {\n        \"type\": \"range\",\n        \"label\": \"Number of Snowflakes\",\n        \"id\": \"num_snowflakes\",\n        \"default\": 50,\n        \"min\": 10,\n        \"max\": 200,\n        \"step\": 10\n      },\n      {\n        \"type\": \"range\",\n        \"label\": \"Minimum Snowflake Size\",\n        \"id\": \"min_snowflake_size\",\n        \"default\": 0.6,\n        \"min\": 0.1,\n        \"max\": 2,\n        \"step\": 0.1\n      },\n      {\n        \"type\": \"range\",\n        \"label\": \"Maximum Snowflake Size\",\n        \"id\": \"max_snowflake_size\",\n        \"default\": 1.4,\n        \"min\": 0.1,\n        \"max\": 2,\n        \"step\": 0.1\n      },\n      {\n        \"type\": \"select\",\n        \"label\": \"Snowflake Type\",\n        \"id\": \"snowflake_type\",\n        \"default\": \"\u2744\",\n        \"options\": [\n          {\n            \"value\": \"\u2744\",\n            \"label\": \"\u2744\"\n          },\n          {\n            \"value\": \"\u2745\",\n            \"label\": \"\u2745\"\n          },\n          {\n            \"value\": \"\u2746\",\n            \"label\": \"\u2746\"\n          }\n        ]\n      },\n      {\n        \"type\": \"color\",\n        \"label\": \"Color 1\",\n        \"id\": \"snowflake_color_1\",\n        \"default\": \"#ffffff\"\n      },\n      {\n        \"type\": \"color\",\n        \"label\": \"Color 2\",\n        \"id\": \"snowflake_color_2\",\n        \"default\": \"#f5fbff\"\n      },\n      {\n        \"type\": \"color\",\n        \"label\": \"Color 3\",\n        \"id\": \"snowflake_color_3\",\n        \"default\": \"#e7f5ff\"\n      },\n      {\n        \"type\": \"range\",\n        \"label\": \"Gravity\",\n        \"id\": \"gravity\",\n        \"default\": 1,\n        \"min\": 0.5,\n        \"max\": 5,\n        \"step\": 0.5\n      }\n    ]\n  },<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">And click \u201c<strong>Save<\/strong>.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/6-add-snowfall-settings-schema-json.png\" alt=\"Add Shopify snowfall effect settings schema json\" class=\"wp-image-41442\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note:&nbsp;<\/strong>Do not forget the comma (,) after the snowfall animation settings code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"render-snowfall-snippet-in-theme-liquid-file\">Step 3: Render the Snowfall Snippet in the theme.liquid File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Now, add the snowfall snippet code to liquid file where you want to add the effect.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For e.g., if you want to add Snowfall effect on the entire Shopify store, you can add it to the theme.liquid file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Copy the following code snippet:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{% render 'meetanshi-snowfall-effect' %}<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">and paste it before the &lt;\/body&gt; tag as shown below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/7-add-snippet-to-theme-liquid-file.png\" alt=\"Add Shopify snowfall effect to theme liquid file\" class=\"wp-image-41443\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Click \u201c<strong>Save<\/strong>.\u201d<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"customize-snowfall-effect-in-shopify-theme-editor\">Step 4: Customize the Snowfall Effect in Shopify Theme Editor<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Go back to <strong>Sales Channels &gt; Online Store &gt; Themes&nbsp;<\/strong>and click \u201c<strong>Customize<\/strong>.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/8-customize-shopify-theme-snowfall-effect.png\" alt=\"Customize Shopify theme to add snowfall effect\" class=\"wp-image-41444\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">In theme customization, go to \u201c<strong>Theme Settings<\/strong>\u201d and expand the \u201c<strong>Meetanshi Snowfall Settings<\/strong>\u201d section. Here you can configure the Shopify Snowfall effect settings, such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Switch the Winter mode on to add snowflakes effect to Shopify<\/li>\n\n\n\n<li>Set the number of snowflakes<\/li>\n\n\n\n<li>Set the minimum and maximum snowflake size<\/li>\n\n\n\n<li>Choose the type of snowflake<\/li>\n\n\n\n<li>Set up to three colors to use for snowflakes<\/li>\n\n\n\n<li>Change the gravity to increase\/decrease snowfall velocity<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/9-configure-snowfall-effect-settings.png\" alt=\"Configure snowfall effect in shopify\" class=\"wp-image-41445\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Configure the settings and click \u201c<strong>Save<\/strong>.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Woohoo! You\u2019ve successfully added a Shopify Snowfall effect without using any app. And you can also customize the effect as per your needs.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here\u2019s what the final result looks like:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2023\/12\/10-shopify-snowfall-effect-preview.gif\" alt=\"Shopify Snowfall Effect\"\/><\/figure>\n\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><\/figure>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">That\u2019s cool! Isn\u2019t it? \u2603\ufe0f<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Try this method to add snowflakes to your Shopify site.<\/p>\n\n\n<div class=\"meetanshi-cta\">\r\n\r\n<div class=\"cta-content-wrapper\">\r\n\r\n<span>MIT Festival Decor App<\/span>\r\n\r\n<p>Add festival magic, sparkle, and charm to your store today!<\/p>\r\n\r\n<a href=\"https:\/\/apps.shopify.com\/mit-festival-effects\" target=\"_blank\" class=\"btn-primary\" rel=\"noopener\">Add Now<\/a>\r\n\r\n<\/div>\r\n\r\n<div class=\"cta-image-new\">\r\n\r\n<img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/11\/mit-festival-effects-and-decor.png\" alt=\"Mit Festival Effects and Decor\">\r\n\r\n<\/div>\r\n\r\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Add Custom Holiday Effects in Shopify \ud83c\udf83\u2764\ufe0f\ud83c\udf41<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Adding the snowflakes to your Shopify site is super easy using the method mentioned above.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you wish to set other festival effects (like fireworks for Diwali, Hearts for Valentine\u2019s Day, Autumn leaves during Autumn, and more), use the<a href=\"https:\/\/apps.shopify.com\/mit-festival-effects\" target=\"_blank\" rel=\"noopener\"> MIT Festival Effects &amp; Decor<\/a> Shopify app.<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXf4T_1Tg_A1EB_m3hybV2lG5aRP9vx2Qv3dFsK8BbIC4V4hdDRP9NtOd_p0oWwMiDGxpqM_UMqYHQ844PxUz0j72J5ZvMs6KkxDAB8Wd5FdW6x5qFZH6DiAVNJ1CRWEthO3WOyLgA?key=RxCzIxGATrYGtXjd47Idrw\" alt=\"Meetanshi Festival Effects &amp; Decor Shopify App\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Using the app, you can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pick from 30+ different visual effects&nbsp;<\/li>\n\n\n\n<li>Decorate your Shopify header based on the festive&nbsp;<\/li>\n\n\n\n<li>Edit your mouse cursor with different trailing effects<\/li>\n\n\n\n<li>Custom pop-up with heading and description<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Additionally, you can add the effect to the entire store or specific products or pages and only to shoppers from specific countries.&nbsp;<\/p>\n\n\n<div class=\"meetanshi-cta\">\r\n\r\n<div class=\"cta-content-wrapper\">\r\n\r\n<span>MIT Festival Decor App<\/span>\r\n\r\n<p>Add festival magic, sparkle, and charm to your store today!<\/p>\r\n\r\n<a href=\"https:\/\/apps.shopify.com\/mit-festival-effects\" target=\"_blank\" class=\"btn-primary\" rel=\"noopener\">Add Now<\/a>\r\n\r\n<\/div>\r\n\r\n<div class=\"cta-image-new\">\r\n\r\n<img decoding=\"async\" src=\"https:\/\/meetanshi.com\/blog\/wp-content\/uploads\/2025\/11\/mit-festival-effects-and-decor.png\" alt=\"Mit Festival Effects and Decor\">\r\n\r\n<\/div>\r\n\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Preparing your Shopify store for Christmas? Learn here to add snowfall effect to it. Adding the Shopify Snow Effect can make your store vibe with&#8230;<\/p>\n","protected":false},"author":32,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[787],"tags":[],"class_list":["post-3256","post","type-post","status-publish","format-standard","hentry","category-shopify"],"acf":[],"_links":{"self":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/3256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/users\/32"}],"replies":[{"embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/comments?post=3256"}],"version-history":[{"count":9,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/3256\/revisions"}],"predecessor-version":[{"id":25062,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/posts\/3256\/revisions\/25062"}],"wp:attachment":[{"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/media?parent=3256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/categories?post=3256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/meetanshi.com\/blog\/wp-json\/wp\/v2\/tags?post=3256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}