{"id":111590,"date":"2026-05-26T13:41:16","date_gmt":"2026-05-26T08:11:16","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=111590"},"modified":"2026-05-26T13:59:20","modified_gmt":"2026-05-26T08:29:20","slug":"search-problem-in-ai","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/search-problem-in-ai\/","title":{"rendered":"The Search Problem in AI: Understanding Problem Definition"},"content":{"rendered":"\n<p>AI has many applications beyond chatbots and image generation. It relies on solving complex problems intelligently. For example, a GPS finds the shortest route to your destination, a robot navigates obstacles in its environment, and a chess program predicts future moves before making decisions. All of these are examples of AI search problems.<\/p>\n\n\n\n<p>To provide intelligent responses, an AI system must know where it currently is, where it needs to go, and how to reach the goal. This process is known as problem formulation or the search problem.<\/p>\n\n\n\n<p>In this article, we will discuss what a search problem is in AI, the key components involved in problem formulation, how AI agents solve problems using search algorithms, and why search problems are fundamental to artificial intelligence.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR<\/strong><\/h2>\n\n\n\n<ol>\n<li>A search problem in AI defines how an intelligent agent moves from an initial state to a goal state using valid actions.<\/li>\n\n\n\n<li>Key components of AI problem formulation include the State Space, Initial State, Goal State, Successor Function, and Path Cost.<\/li>\n\n\n\n<li>Search algorithms such as BFS, DFS, and A* use these components to find solutions efficiently.<\/li>\n\n\n\n<li>Search problems form the foundation of many AI systems, including robotics, navigation systems, game AI, recommendation systems, and autonomous agents.<\/li>\n\n\n\n<li>Understanding search problems helps beginners build strong foundations in AI concepts, problem-solving, and intelligent agent design.<\/li>\n<\/ol>\n\n\n\n<div class=\"guvi-answer-card\" style=\"margin: 40px 0;\">\n\n  <div style=\"\n    position: relative;\n    background: linear-gradient(135deg, #f0fff4, #e6f7ee);\n    border: 1px solid #cfeedd;\n    padding: 26px 24px 22px 24px;\n    border-radius: 14px;\n    font-family: Arial, sans-serif;\n    box-shadow: 0 6px 16px rgba(0,0,0,0.05);\n  \">\n\n    <!-- Top accent -->\n    <div style=\"\n      position: absolute;\n      top: 0;\n      left: 0;\n      height: 6px;\n      width: 100%;\n      background: linear-gradient(to right, #099f4e, #6dd5a3);\n      border-radius: 14px 14px 0 0;\n    \"><\/div>\n\n    <!-- Title -->\n    <h3 style=\"\n      margin: 10px 0 12px 0;\n      color: #099f4e;\n      font-size: 20px;\n    \">\n      What is a Search Problem?\n    <\/h3>\n\n    <!-- Content -->\n    <p style=\"\n      margin: 0;\n      color: #2f4f3f;\n      font-size: 16px;\n      line-height: 1.7;\n    \">\n      A search problem is a formal framework in artificial intelligence that defines how an intelligent agent moves from an initial state to a goal state through a sequence of valid actions. The agent explores multiple possible paths and evaluates solutions based on rules, constraints, costs, or optimization criteria to determine the most suitable outcome.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Search Problems Matter in Artificial Intelligence?<\/strong><\/h2>\n\n\n\n<p>Search problems are important because many AI systems work by exploring possibilities before making decisions.<\/p>\n\n\n\n<p>Without proper problem formulation, an AI agent cannot understand:<\/p>\n\n\n\n<ol>\n<li>What problem does it need to solve<\/li>\n\n\n\n<li>What actions can it perform<\/li>\n\n\n\n<li>How success is measured<\/li>\n\n\n\n<li>Which solution is optimal<\/li>\n<\/ol>\n\n\n\n<p>Search-based AI is widely used in:<\/p>\n\n\n\n<ol>\n<li>Robotics<\/li>\n\n\n\n<li>Self-driving cars<\/li>\n\n\n\n<li>Virtual assistants<\/li>\n\n\n\n<li>Game AI<\/li>\n\n\n\n<li>Route optimization<\/li>\n\n\n\n<li>Recommendation systems<\/li>\n\n\n\n<li>Automated planning systems<\/li>\n<\/ol>\n\n\n\n<p>Modern AI systems also rely on search and optimization techniques behind the scenes to generate intelligent responses and make decisions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Parts of a Search Problem<\/strong><\/h2>\n\n\n\n<p>A search problem in artificial intelligence consists of several important components. These components define the environment and guide the AI agent toward the solution.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Initial State<\/strong><\/h3>\n\n\n\n<p>The initial state represents the agent&#8217;s starting position.<\/p>\n\n\n\n<p>It describes the condition of the system before any action takes place.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<ol>\n<li>In chess, the initial state is the starting arrangement of pieces.<\/li>\n\n\n\n<li>In a maze problem, it is the starting position of the agent.<\/li>\n\n\n\n<li>In navigation systems, it represents the current location.<\/li>\n<\/ol>\n\n\n\n<p>The AI agent begins its search from this state.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Goal State<\/strong><\/h3>\n\n\n\n<p>The goal state is the desired outcome that the AI agent wants to achieve.<\/p>\n\n\n\n<p>Once the agent reaches this state, the problem is considered solved.<\/p>\n\n\n\n<p>Examples include:<\/p>\n\n\n\n<ol>\n<li>Checkmating the opponent in chess<\/li>\n\n\n\n<li>Reaching a destination in navigation systems<\/li>\n\n\n\n<li>Solving a puzzle configuration<\/li>\n<\/ol>\n\n\n\n<p>The goal state acts as the target for the search algorithm.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. State Space<\/strong><\/h3>\n\n\n\n<p>The state space contains all possible states the agent can explore.<\/p>\n\n\n\n<p>Simple problems may have a small state space, while real-world AI systems often contain extremely large numbers of possible states.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<ol>\n<li>Tic-tac-toe has a relatively small state space.<\/li>\n\n\n\n<li>Chess contains billions of possible board configurations.<\/li>\n<\/ol>\n\n\n\n<p>Efficient AI systems try to reduce unnecessary exploration within the state space.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Successor Function<\/strong><\/h3>\n\n\n\n<p>The successor function defines the possible actions that can be taken from a particular state.<\/p>\n\n\n\n<p>It helps the AI agent move from one state to another.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<ol>\n<li>A robot may move left, right, forward, or backward.<\/li>\n\n\n\n<li>In chess, every legal move creates a new state.<\/li>\n\n\n\n<li>In navigation systems, connected roads create successor states.<\/li>\n<\/ol>\n\n\n\n<p>The successor function generates future possibilities for the AI system.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Path Cost<\/strong><\/h3>\n\n\n\n<p>Path cost represents the total cost required to reach the goal state.<\/p>\n\n\n\n<p>The cost may include:<\/p>\n\n\n\n<ol>\n<li>Distance<\/li>\n\n\n\n<li>Time<\/li>\n\n\n\n<li>Energy consumption<\/li>\n\n\n\n<li>Risk<\/li>\n\n\n\n<li>Resource usage<\/li>\n<\/ol>\n\n\n\n<p>AI systems generally try to minimize path cost while solving problems.<\/p>\n\n\n\n<p>For example, Google Maps may choose either the shortest or fastest route depending on traffic conditions.<\/p>\n\n\n\n<p>You can also explore this free <a href=\"https:\/\/www.guvi.in\/mlp\/genai-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=The+Search+Problem+in+AI%3A+Understanding+Problem+Definition\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>ebook<\/strong><\/a><strong> <\/strong>to learn more about search algorithms, intelligent systems, and practical AI concepts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How AI Agents Solve Search Problems<\/strong><\/h2>\n\n\n\n<p>AI agents solve search problems by exploring different states until the goal state is reached.<\/p>\n\n\n\n<p>The process generally follows these steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Define the Problem<\/strong><\/h3>\n\n\n\n<p>The AI system identifies:<\/p>\n\n\n\n<ol>\n<li>Initial state<\/li>\n\n\n\n<li>Goal state<\/li>\n\n\n\n<li>Possible actions<\/li>\n\n\n\n<li>Constraints<\/li>\n<\/ol>\n\n\n\n<p>This stage is known as problem formulation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Explore the State Space<\/strong><\/h3>\n\n\n\n<p>The search algorithm explores possible states systematically.<\/p>\n\n\n\n<p>Depending on the algorithm, exploration may happen:<\/p>\n\n\n\n<ol>\n<li>Level by level<\/li>\n\n\n\n<li>Depth-wise<\/li>\n\n\n\n<li>Cost optimized<\/li>\n\n\n\n<li>Heuristic driven<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Evaluate Possible Paths<\/strong><\/h3>\n\n\n\n<p>The AI agent evaluates different paths using metrics such as:<\/p>\n\n\n\n<ol>\n<li>Distance<\/li>\n\n\n\n<li>Time<\/li>\n\n\n\n<li>Estimated success<\/li>\n\n\n\n<li>Resource efficiency<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Reach the Goal State<\/strong><\/h3>\n\n\n\n<p>Once the goal state is found, the algorithm returns the sequence of actions needed to solve the problem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Types of Search Algorithms in Artificial Intelligence<\/strong><\/h2>\n\n\n\n<p>Different search algorithms solve problems differently depending on complexity and efficiency requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Breadth First Search (BFS)<\/strong><\/h3>\n\n\n\n<p>Breadth First Search explores states level by level before moving deeper into the search tree.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Characteristics:<\/strong><\/h4>\n\n\n\n<ol>\n<li>Guarantees the shortest path in unweighted problems<\/li>\n\n\n\n<li>Uses a queue data structure<\/li>\n\n\n\n<li>Requires high memory for large problems<\/li>\n<\/ol>\n\n\n\n<p>BFS is commonly used in shortest path and graph traversal problems.<\/p>\n\n\n\n<p>Algorithms such as BFS and DFS are part of<a href=\"https:\/\/www.guvi.in\/blog\/uninformed-search-strategies-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> uninformed search strategies in AI<\/a>, where the system explores states without additional heuristic knowledge.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Depth First Search (DFS)<\/strong><\/h3>\n\n\n\n<p>Depth-first search explores one branch deeply before backtracking.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Characteristics:<\/strong><\/h4>\n\n\n\n<ol>\n<li>Uses a stack data structure<\/li>\n\n\n\n<li>Requires less memory<\/li>\n\n\n\n<li>May not always find the optimal solution<\/li>\n<\/ol>\n\n\n\n<p>DFS works well when solutions are expected deep inside the search tree.<\/p>\n\n\n\n<p>If you want to understand how DFS explores deep search paths before backtracking, this detailed guide on<a href=\"https:\/\/www.guvi.in\/blog\/dfs-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> DFS in AI<\/a> explains the concept with examples.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Uniform Cost Search<\/strong><\/h3>\n\n\n\n<p>Uniform Cost Search expands the path with the lowest cumulative cost.<\/p>\n\n\n\n<p>It is especially useful when different actions have different costs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Greedy Best First Search<\/strong><\/h3>\n\n\n\n<p>Greedy Best First Search selects the state that appears closest to the goal.<\/p>\n\n\n\n<p>It uses heuristic functions to estimate future success.<\/p>\n\n\n\n<p>Although fast, it may not always produce the optimal solution.<\/p>\n\n\n\n<p>Greedy approaches are closely related to<a href=\"https:\/\/www.guvi.in\/blog\/best-first-search-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> Best First Search in AI<\/a>, where algorithms prioritize states that appear closer to the goal.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>A* Search Algorithm<\/strong><\/h3>\n\n\n\n<p>A* is one of the most widely used search algorithms in artificial intelligence.<\/p>\n\n\n\n<p>It combines:<\/p>\n\n\n\n<ol>\n<li>Actual path cost<\/li>\n\n\n\n<li>Estimated future cost<\/li>\n<\/ol>\n\n\n\n<p>This makes A* both efficient and optimal in many real-world applications.<\/p>\n\n\n\n<p>To understand how intelligent systems explore possible solutions efficiently, you can also learn about different<a href=\"https:\/\/www.guvi.in\/blog\/search-algorithms-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> search algorithms in AI<\/a> and their real-world applications.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real World Examples of Search Problems<\/strong><\/h2>\n\n\n\n<p>Search problems exist almost everywhere in modern technology.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Navigation Systems<\/strong><\/h3>\n\n\n\n<p>Applications like Google Maps search through road networks to find the best route.<\/p>\n\n\n\n<p>The system considers:<\/p>\n\n\n\n<ol>\n<li>Distance<\/li>\n\n\n\n<li>Traffic<\/li>\n\n\n\n<li>Road conditions<\/li>\n\n\n\n<li>Travel time<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Robotics<\/strong><\/h3>\n\n\n\n<p>Robots use search algorithms to navigate environments and avoid obstacles.<\/p>\n\n\n\n<p>Warehouse robots especially rely heavily on AI-based pathfinding.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Game AI<\/strong><\/h3>\n\n\n\n<p>Chess engines and video game opponents use search algorithms to predict future moves and select strategies.<\/p>\n\n\n\n<p>In-game AI systems, concepts such as<a href=\"https:\/\/www.guvi.in\/blog\/adversarial-search-in-ai\/\" target=\"_blank\" rel=\"noreferrer noopener\"> adversarial search in AI<\/a> help intelligent agents predict and respond to opponent actions strategically.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Automated Planning<\/strong><\/h3>\n\n\n\n<p>AI assistants use planning and search methods to organize tasks and optimize schedules.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <p style=\"margin-top: 14px; margin-bottom: 0;\">\n    The number of possible <strong style=\"color: #FFFFFF;\">chess positions<\/strong> is estimated to be far greater than the number of atoms in the observable universe, creating an unimaginably large <strong style=\"color: #FFFFFF;\">state space<\/strong>. Because exhaustively evaluating every possible move sequence is computationally impossible, chess became one of the most important research domains for developing intelligent <strong style=\"color: #FFFFFF;\">search algorithms<\/strong> in artificial intelligence. Techniques pioneered through chess research later influenced systems used in planning, optimization, robotics, and modern game-playing AI.\n  <\/p>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges in AI Search Problems<\/strong><\/h2>\n\n\n\n<p>Although search problems sound simple conceptually, real-world AI systems face major challenges.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Large State Spaces<\/strong><\/h3>\n\n\n\n<p>Some problems contain millions or billions of possible states.<\/p>\n\n\n\n<p>Exploring all possibilities becomes computationally impossible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Time Complexity<\/strong><\/h3>\n\n\n\n<p>Many search algorithms become slower as the problem size increases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Memory Limitations<\/strong><\/h3>\n\n\n\n<p>Algorithms like BFS consume large amounts of memory in complex problems.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Local Optima<\/strong><\/h3>\n\n\n\n<p>Certain algorithms may get trapped in solutions that appear good temporarily but are not globally optimal.<\/p>\n\n\n\n<p>This is why heuristic-driven and intelligent search methods are important in modern AI.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Problem Formulation in AI<\/strong><\/h2>\n\n\n\n<p>Problem formulation is the process of converting a real-world task into a structured search problem.<\/p>\n\n\n\n<p>A good problem formulation helps AI systems:<\/p>\n\n\n\n<ol>\n<li>Reduce unnecessary computation<\/li>\n\n\n\n<li>Improve efficiency<\/li>\n\n\n\n<li>Reach solutions faster<\/li>\n\n\n\n<li>Avoid irrelevant states<\/li>\n<\/ol>\n\n\n\n<p>Poor problem formulation can make even simple problems difficult to solve.<\/p>\n\n\n\n<p>This is why defining the right state space and successor functions is critical in artificial intelligence.<\/p>\n\n\n\n<p>If you want to build practical AI projects, <strong>HCL GUVI\u2019s<\/strong> <a href=\"https:\/\/www.guvi.in\/courses\/machine-learning-and-ai\/mastering-ai-and-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=The+Search+Problem+in+AI%3A+Understanding+Problem+Definition\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI and Machine Learning course<\/strong><\/a> can help you learn concepts like intelligent agents, search algorithms, neural networks, and real-world AI applications through hands-on learning.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Search problems form the backbone of artificial intelligence. Every intelligent system must understand its current state, identify a goal, explore possible actions, and evaluate paths efficiently.<\/p>\n\n\n\n<p>Concepts such as initial state, goal state, state space, successor function, and path cost help AI agents solve problems systematically. Search algorithms then use these components to discover solutions in an optimized manner.<\/p>\n\n\n\n<p>From robotics and navigation systems to game AI and recommendation engines, search problems continue to play a critical role in how intelligent systems make decisions.<\/p>\n\n\n\n<p>For beginners entering artificial intelligence, understanding search problems is one of the most important steps toward mastering AI concepts and problem-solving techniques.<\/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-1779253965497\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is a search problem in AI?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A search problem in AI is a framework where an intelligent agent searches for a sequence of actions that transforms an initial state into a goal state.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1779253970331\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What is the difference between the initial state and the goal state?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The initial state represents the starting condition of the AI agent, while the goal state represents the desired outcome.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1779253980414\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. What is a state space in artificial intelligence?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A state space is the collection of all possible states that an AI agent can explore while solving a problem.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1779253988336\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Why is the successor function important in AI?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The successor function defines possible actions from a given state and helps generate future states during problem-solving.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1779253997703\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Which search algorithm is most commonly used in AI?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>A* search is one of the most widely used AI search algorithms because it balances efficiency and optimal path finding effectively.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>AI has many applications beyond chatbots and image generation. It relies on solving complex problems intelligently. For example, a GPS finds the shortest route to your destination, a robot navigates obstacles in its environment, and a chess program predicts future moves before making decisions. All of these are examples of AI search problems. To provide [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":111711,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[933],"tags":[],"views":"28","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/05\/Search-Problem-300x116.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/05\/Search-Problem.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/111590"}],"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\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=111590"}],"version-history":[{"count":3,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/111590\/revisions"}],"predecessor-version":[{"id":112300,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/111590\/revisions\/112300"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/111711"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=111590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=111590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=111590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}