{"id":78677,"date":"2025-04-18T10:41:47","date_gmt":"2025-04-18T05:11:47","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=78677"},"modified":"2025-10-22T11:43:12","modified_gmt":"2025-10-22T06:13:12","slug":"what-is-mongo-db","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-is-mongo-db\/","title":{"rendered":"Mongo DB 101 : Understanding the Power of NoSQL Databases"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Imagine building an app that needs to handle thousands of requests per second on diverse types of data, sounds like a challenging task, right? Well, that\u2019s where Mongo DB comes in. Whether you\u2019re developing a mobile app, an e-commerce platform, or big data applications, Mongo DB is designed to make your life easier.<\/p>\n\n\n\n<p>In this blog, you will understand what databases are, their types, core concepts, and features in Mongo DB, its benefits, use cases, and popular tools for Mongo DB. So, if you\u2019re curious about what makes Mongo DB one of the best NoSQL databases,&nbsp; you\u2019ve come to the right place. Let\u2019s dive in!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is Mongo DB?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.mongodb.com\/\" data-type=\"link\" data-id=\"https:\/\/www.mongodb.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Mongo DB<\/a> is an open-source, NoSQL database that stores data in JSON documents for flexibility rather than traditional tables used by relational databases. It is designed to handle huge volumes of unstructured or semi-structured data, making it a great choice for modern applications. It is a purely document-oriented model, where each record has various fields, types, and values.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Features<\/strong><\/h3>\n\n\n\n<ul>\n<li>Mongo DB is flexible and adaptable, you don\u2019t need a predefined schema for storing the data.<\/li>\n\n\n\n<li>It supports horizontal scaling that can handle huge data by distributing the load across multiple servers.<\/li>\n\n\n\n<li>It uses APIs and a rich query language to get the data from the databases.<\/li>\n<\/ul>\n\n\n\n<p>Now that we have seen the definition of Mongo DB and its key features, in the next section, we will look into the core concepts of Mongo DB.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Core Concepts of Mongo DB<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-1200x630.png\" alt=\"Core Concepts of Mongo DB\" class=\"wp-image-79333\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Core-Concepts-of-MongoDB@2x-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>If you are a beginner in Mongo DB, then you must know these core concepts to use it correctly and efficiently. Mongo DB\u2019s architecture revolves around several core concepts that make it more flexible, scalable, and easy to use. Some of them are:<\/p>\n\n\n\n<ol>\n<li><strong>Document<\/strong><\/li>\n<\/ol>\n\n\n\n<p>In Mongo DB, the data is stored as documents, which are in JSON object format with key and value pairs. A document can contain various data types, such as arrays and nested objects.<\/p>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>{<br>&nbsp; &#8220;_id&#8221;: 1,<br>&nbsp; &#8220;name&#8221;: &#8220;Roopa Dharshini&#8221;,<br>&nbsp; &#8220;age&#8221;: 21,<br>&nbsp; &#8220;address&#8221;: {<br>&nbsp; &nbsp; &#8220;street&#8221;: &#8220;23 Main St&#8221;,<br>&nbsp; &nbsp; &#8220;city&#8221;: &#8220;Chennai&#8221;<br>&nbsp; }<br>}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ol start=\"2\">\n<li><strong>Collections<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Documents are stored in collections. A collection is similar to tables in relational databases. As we discussed earlier, it doesn\u2019t require any predefined schema; a set of documents can be stored in the collection for easier extraction and use.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Database<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Mongo DB organizes the collection into a database. In other words, databases are the containers for collections. Each Mongo DB server can host multiple databases.<\/p>\n\n\n\n<ol start=\"4\">\n<li><strong>Binary JSON (BJSON)<\/strong><\/li>\n<\/ol>\n\n\n\n<p>MongoDB stores the data in Binary JavaScript Object Oriented Notation (BJSON) format. It is similar to JSON with additional support to data types such as date and binary data, making it more efficient for storage and retrieval.<\/p>\n\n\n\n<ol start=\"5\">\n<li><strong>Indexing<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Unlike structured databases, MongoDB uses indexing methods for faster search operations. Indexes are created on one or more fields, improving query performance for larger datasets.<\/p>\n\n\n\n<p><em>If you are a person interested in learning more about MongoDB with examples and who loves to learn by reading, you can use HCL Guvi\u2019s FREE E-book on <\/em><a href=\"https:\/\/www.guvi.in\/mlp\/mongoDB-ebook?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=What+is+MongoDB\" target=\"_blank\" rel=\"noreferrer noopener\"><em>MongoDB for Beginners<\/em><\/a><em>. This e-book explains the core features of MongoDB in detail with examples of each.<\/em>\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits and Use Cases<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-1200x630.png\" alt=\"Benefits and Use cases of Mongo DB\" class=\"wp-image-79336\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Benefits-and-Use-cases@2x-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>MongoDB has several benefits over traditional SQL databases, making it the best choice for many developers. Let\u2019s look at some of the <a href=\"https:\/\/www.guvi.in\/blog\/top-reasons-to-learn-mongodb\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/top-reasons-to-learn-mongodb\/\" rel=\"noreferrer noopener\">MongoDB benefits<\/a> and use cases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Benefits<\/strong><\/h3>\n\n\n\n<ul>\n<li><strong>Scalability:<\/strong> It supports horizontal scaling through sharding<\/li>\n\n\n\n<li><strong>Flexibility:<\/strong> It has a schema-less design, making it more flexible<\/li>\n\n\n\n<li><strong>High Availability:<\/strong> It ensures high availability with the replication feature<\/li>\n\n\n\n<li><strong>Performance:<\/strong> The indexing feature allows for high performance in handling large datasets<\/li>\n\n\n\n<li><strong>Rich Query Language:<\/strong> It supports a wide range of operations like filtering, sorting, and aggregation<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Use Cases<\/strong><\/h3>\n\n\n\n<ul>\n<li><strong>Big Data Applications:<\/strong> MongoDB is well-suited for managing large volumes of unstructured data, which makes it an ideal fit for big data applications.<\/li>\n\n\n\n<li><strong>Real-Time Analytics:<\/strong> MongoDB easily processes large amounts of data quickly, that are suitable for real-time analytical applications.<\/li>\n\n\n\n<li><strong>Mobile Applications:<\/strong> MongoDB\u2019s ability for low-latency operations makes it perfect for mobile applications with dynamic data storage needs.<\/li>\n<\/ul>\n\n\n\n<p>These are some of the benefits and use cases of MongoDB. In the next section, we will look into the popular MongoDB tools and ecosystem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>MongoDB Installation<\/strong><\/h2>\n\n\n\n<p>Before starting with MongoDB, you need to install the necessary tools and MongoDB. You can download any one of the tools (either MongoDB Compass or MongoDB CLI) from their official website. According to your operating system and its version, the installation may differ. Similar to all the installation processes, you need to double-click the installer once it&#8217;s downloaded. After installation, open the tool and get started by creating your first database. If you found any difficulty in installing MongoDB tools, you can check out our detailed guide on <a href=\"https:\/\/www.guvi.in\/blog\/guide-for-mongodb-installation-on-windows\/\" target=\"_blank\" rel=\"noreferrer noopener\">MongoDB installation<\/a>.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Popular MongoDB Tools and Ecosystem<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-1200x630.png\" alt=\"Popular Mongo DB Tools\" class=\"wp-image-79335\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/Popular-MongoDB-Tools@2x-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>MongoDB\u2019s ecosystem includes several tools that help developers to manage, visualize, and interact with their databases more efficiently. Here are some of the popular tools:<\/p>\n\n\n\n<ol>\n<li><a href=\"https:\/\/www.mongodb.com\/products\/tools\/compass\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>MongoDB Compass<\/strong><\/a>: It is a graphical user interface (GUI) that allows developers to visualize, analyze, and manage databases without using code.<\/li>\n\n\n\n<li><a href=\"https:\/\/www.mongodb.com\/atlas\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>MongoDB Atlas<\/strong><\/a>: It is a cloud-based platform that lets you host and manage MongoDB databases without setting up a local server.<\/li>\n\n\n\n<li><strong><a href=\"https:\/\/www.mongodb.com\/products\/tools\/atlas-cli\" target=\"_blank\" rel=\"noreferrer noopener\">MongoDB C<\/a><\/strong><a href=\"https:\/\/www.mongodb.com\/products\/tools\/atlas-cli\" target=\"_blank\" rel=\"noopener\"><strong>LI<\/strong><\/a>: A command-line tool for advanced users who prefer to interact with MongoDB through commands and scripts.<\/li>\n<\/ol>\n\n\n\n<p><em>Start your journey in MongoDB with HCL Guvi\u2019s Mastering <\/em><a href=\"https:\/\/www.guvi.in\/courses\/database-and-cloud-computing\/mongodb\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=What+is+MongoDB\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/courses\/database-and-cloud-computing\/mongodb\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=What+is+MongoDB\" target=\"_blank\" rel=\"noreferrer noopener\">MongoDB course<\/a>, which teaches you from the basics to the advanced. You will gain industry-recognized certifications and enhance your skills to become<em> a MERN stack developer.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What are databases?<\/strong><\/h2>\n\n\n\n<p>A database is a structured collection of data that is stored electronically. It can store data in the form of numbers, texts, images, videos, and other types of data. Databases serve as a backbone to most of the modern applications, from e-commerce to social networking platforms, and also in enterprise applications.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>CRUD<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-1200x630.png\" alt=\"CRUD Operations\" class=\"wp-image-79334\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/CRUD-Operations@2x-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Databases are crucial because they help in storing data in a consistent and organized manner to ensure data integrity. It also helps in performing various operations on data, querying and processing. Some of the most common operations are:<\/p>\n\n\n\n<ul>\n<li><strong>CREATE: <\/strong>Insert a new record\/data into the database.<\/li>\n\n\n\n<li><strong>READ: <\/strong>Retrieves data from the database based on queries.<\/li>\n\n\n\n<li><strong>UPDATE: <\/strong>Modifies existing data in the database by changing required fields.<\/li>\n\n\n\n<li><strong>DELETE: <\/strong>Removes the data from the database.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types of databases<\/strong><\/h2>\n\n\n\n<p>Databases are categorized into many types based on their structure and functionality. But, there are two main types of databases: Relational and Non-Relational databases. Depending on the requirements, we can choose any one of the databases for our project. MongoDB falls under the Non-Relational database category of document-based databases, which we\u2019ll dive deeper into in the next section.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Feature<\/strong><\/td><td><strong>Relational Databases(SQL)<\/strong><\/td><td><strong>NoSQL<\/strong><\/td><\/tr><tr><td><strong>Definition<\/strong><\/td><td>It stores data in structured tables.<\/td><td>It stores data in non-structured formats such as json, graphs.<\/td><\/tr><tr><td><strong>Schema<\/strong><\/td><td>It uses a predefined schema.<\/td><td>It uses a flexible schema.<\/td><\/tr><tr><td><strong>Scalability<\/strong><\/td><td>It uses horizontal scaling.<\/td><td>It uses vertical scaling.<\/td><\/tr><tr><td><strong>Query language<\/strong><\/td><td>Structured Query language(SQL)<\/td><td>No standard language. It uses APIs.<\/td><\/tr><tr><td><strong>Examples<\/strong><\/td><td>MySQL, PostgreSQL, Oracle.<\/td><td>MongoDB, Cassandra, Redis.<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Difference Between SQL and NoSQL Databases<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In conclusion, MongoDB is a powerful NoSQL database that provides wonderful flexibility, scalability, and performance. By leveraging the JSON format to store the data, it allows developers to build applications that can handle large amounts of unstructured data efficiently. With the help of popular MongoDB tools, one can easily manage and visualize data. These are the reasons that make MongoDB the best choice for NoSQL databases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1744893410868\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q1. What is the difference between MongoDB and traditional relational databases?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>MongoDB is a NoSQL database that stores data in JSON-like documents, whereas traditional relational databases use structured tables with rows and columns. MongoDB offers more flexibility with its schema-less design, making it better for handling unstructured or rapidly changing data.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1744893429642\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q2. Is MongoDB suitable for small applications or only large-scale projects?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>MongoDB is versatile and can be used for both small and large-scale applications. Its flexibility, ease of use, and ability to scale make it ideal for projects of all sizes, from simple apps to large, data-intensive platforms.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1744893446086\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q3. What programming languages can I use with MongoDB?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>MongoDB supports a wide range of programming languages, including JavaScript (via Node.js), Python, Java, C#, PHP, Ruby, and many more. Its compatibility with popular languages makes it easy to integrate into various tech stacks.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1744893461850\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q4. How does MongoDB handle data consistency?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>MongoDB uses eventual consistency, meaning it prioritizes availability and partition tolerance over immediate consistency. However, it offers options like replica sets and write concern levels to manage consistency and fault tolerance based on your application&#8217;s needs.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1744893481085\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Q5. Can MongoDB be used for real-time applications?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, MongoDB is well-suited for real-time applications due to its high-performance architecture, fast read and write operations, and horizontal scalability. It&#8217;s commonly used in applications that require real-time data processing, such as messaging platforms, gaming backends, and live analytics dashboards.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction Imagine building an app that needs to handle thousands of requests per second on diverse types of data, sounds like a challenging task, right? Well, that\u2019s where Mongo DB comes in. Whether you\u2019re developing a mobile app, an e-commerce platform, or big data applications, Mongo DB is designed to make your life easier. In [&hellip;]<\/p>\n","protected":false},"author":57,"featured_media":79338,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[326,907],"tags":[],"views":"3319","authorinfo":{"name":"Roopa Dharshini","url":"https:\/\/www.guvi.in\/blog\/author\/roopa-dharshini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/What-is-MongoDB_-Understanding-the-Power-of-NoSQL-Databases-1-300x116.png","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2025\/04\/What-is-MongoDB_-Understanding-the-Power-of-NoSQL-Databases-1.png","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/78677"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/57"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=78677"}],"version-history":[{"count":17,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/78677\/revisions"}],"predecessor-version":[{"id":90662,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/78677\/revisions\/90662"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/79338"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=78677"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=78677"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=78677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}