{"id":122820,"date":"2026-07-15T21:48:06","date_gmt":"2026-07-15T16:18:06","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=122820"},"modified":"2026-07-15T21:50:08","modified_gmt":"2026-07-15T16:20:08","slug":"how-to-stream-claude-responses","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/how-to-stream-claude-responses\/","title":{"rendered":"How to Stream Claude Responses with the API"},"content":{"rendered":"\n<p>If you&#8217;re building A<a href=\"https:\/\/www.guvi.in\/blog\/what-is-artificial-intelligence\/\">I<\/a> chatbots or real-time applications, learning how to <strong>stream Claude API responses<\/strong> can significantly improve the user experience. Instead of waiting for an entire response, Claude streams text incrementally using <strong>Server-Sent Events (SSE)<\/strong>, making applications feel faster and more interactive.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>TL;DR Summary<\/strong><\/h4>\n\n\n\n<ol>\n<li>Streaming lets Claude generate responses token by token instead of waiting for the complete output.<\/li>\n\n\n\n<li>Enable streaming by setting &#8220;stream&#8221;: true in the Messages API request.<\/li>\n\n\n\n<li>Claude uses <strong>Server-Sent Events (SSE)<\/strong> to deliver responses incrementally.<\/li>\n\n\n\n<li>Streaming improves responsiveness and user experience.<\/li>\n\n\n\n<li>The official Anthropic SDKs simplify streaming implementation.<\/li>\n<\/ol>\n\n\n\n<p> If you&#8217;re new to AI development,&nbsp; <strong>HCL GUVI&#8217;s <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/english\/bundles\/artificial-intelligence-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=How+to+Stream+Claude+Responses+with+the+API\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI &amp; Machine Learning<\/strong><\/a><strong> Course <\/strong>introduces AI APIs, prompt engineering, and LLM concepts with beginner-friendly explanations.<\/p>\n\n\n\n<p><em><strong>\ud83d\udcca Data Point<\/strong>: Anthropic&#8217;s Messages API supports streaming by enabling the &#8220;stream&#8221;: true parameter. Instead of returning one complete response, Claude sends incremental events that applications can display in real time using <strong>Server-Sent Events (SSE)<\/strong>.<\/em><\/p>\n\n\n\n<div style=\"margin:40px 0;border:1px solid #d9efe2;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.05);overflow:hidden;font-family:Arial,sans-serif;\">\n\n  <div style=\"background:#099f4e;padding:18px 24px;\">\n    <h2 style=\"margin:0;color:#fff;font-size:24px;font-weight:700;line-height:1.4;\">\n      How Do You Build a Claude API Python Chatbot?\n    <\/h2>\n  <\/div>\n\n  <div style=\"background:#f8fffb;padding:24px;\">\n    <p style=\"margin:0;color:#374151;font-size:16px;line-height:1.8;\">\n      To build a Claude API Python chatbot, install Anthropic&#8217;s official Python SDK, generate an API key, initialize the client, and send prompts using the Messages API. By storing conversation history, your chatbot can remember previous interactions and generate more natural, context-aware responses.\n    <\/p>\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Does Streaming Mean?<\/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\/2026\/07\/image-207-1200x630.png\" alt=\"\" class=\"wp-image-122831\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207-1536x807.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207-150x79.png 150w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-207.png 1731w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Normally, an <a href=\"https:\/\/www.guvi.in\/hub\/network-programming-with-python\/understanding-apis\/\" target=\"_blank\" rel=\"noreferrer noopener\">API<\/a> waits until an <a href=\"https:\/\/www.guvi.in\/blog\/ai-foundation-models\/\" target=\"_blank\" rel=\"noreferrer noopener\">AI model<\/a> finishes generating the complete response before sending it back to the application. For long responses, this can introduce noticeable delays.<\/p>\n\n\n\n<p>Streaming changes this behavior by sending small pieces of text as they&#8217;re generated. Users immediately begin seeing Claude&#8217;s response appear on screen instead of waiting several seconds for the final answer.<\/p>\n\n\n\n<p>This approach creates smoother conversations and improves the perceived performance of AI-powered applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits of Streaming Claude API Responses<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/platform.claude.com\/docs\/en\/build-with-claude\/streaming\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Streaming<\/a> improves both application performance and user experience.<\/p>\n\n\n\n<p>Some key benefits include:<\/p>\n\n\n\n<ul>\n<li>Faster perceived response times<\/li>\n\n\n\n<li>Improved user engagement<\/li>\n\n\n\n<li>Better handling of long responses<\/li>\n\n\n\n<li>Reduced waiting time<\/li>\n\n\n\n<li>Real-time conversational experiences<\/li>\n<\/ul>\n\n\n\n<p>Streaming is widely used in AI chatbots, coding assistants, writing tools, and customer support applications because it makes interactions feel more natural.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Stream Claude Responses with the API<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"658\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-1200x658.png\" alt=\"\" class=\"wp-image-122832\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-1200x658.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-300x165.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-768x421.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-1536x843.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208-150x82.png 150w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-208.png 1693w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Anthropic&#8217;s Messages API makes streaming simple by adding one parameter to your request.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Get an Anthropic API Key<\/strong><\/h3>\n\n\n\n<p>Create an Anthropic account and generate an API key from the developer dashboard.<\/p>\n\n\n\n<p>Install the official Anthropic SDK for your preferred programming language before making API requests.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Create a Messages API Request<\/strong><\/h3>\n\n\n\n<p>A standard request includes:<\/p>\n\n\n\n<ul>\n<li>Claude model<\/li>\n\n\n\n<li>User message<\/li>\n\n\n\n<li>Maximum output tokens<\/li>\n<\/ul>\n\n\n\n<p>To enable streaming, simply add:<\/p>\n\n\n\n<p>&#8220;stream&#8221;: true<\/p>\n\n\n\n<p>Claude will now return incremental events instead of waiting until the response is fully generated.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Receive Server-Sent Events (SSE)<\/strong><\/h3>\n\n\n\n<p>Once streaming is enabled, Claude sends multiple <strong>Server-Sent Events (SSE)<\/strong> instead of one large response.<\/p>\n\n\n\n<p>Your application listens for these events and updates the interface as each new piece of text arrives.<\/p>\n\n\n\n<p>The official Anthropic SDK handles much of this process automatically for <a href=\"https:\/\/www.guvi.in\/blog\/python-developer-roles-and-responsibilities\/\">P<\/a><a href=\"https:\/\/www.guvi.in\/blog\/python-developer-roles-and-responsibilities\/\" target=\"_blank\" rel=\"noreferrer noopener\">y<\/a><a href=\"https:\/\/www.guvi.in\/blog\/python-developer-roles-and-responsibilities\/\">thon<\/a> and <a href=\"https:\/\/www.guvi.in\/blog\/javascript-tools-every-developer-should-know\/\" target=\"_blank\" rel=\"noreferrer noopener\">JavaScript developers<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Display Responses in Real Time<\/strong><\/h3>\n\n\n\n<p>As new events arrive, append them to your chat interface.<\/p>\n\n\n\n<p>Instead of displaying:<\/p>\n\n\n\n<p>Complete response after 8 seconds<\/p>\n\n\n\n<p>Users immediately see:<\/p>\n\n\n\n<p>H&#8230;<\/p>\n\n\n\n<p>Hello&#8230;<\/p>\n\n\n\n<p>Hello! Here&#8217;s how&#8230;<\/p>\n\n\n\n<p>This typing effect significantly improves perceived responsiveness.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Handle Stream Completion<\/strong><\/h3>\n\n\n\n<p>Streaming continues until Claude sends the final event indicating the response is complete.<\/p>\n\n\n\n<p>Your application can then stop listening for events, save the conversation, and enable follow-up interactions.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\"><em>If you&#8217;re interested in learning how AI APIs, prompt engineering, and large language models work, HCL GUVI&#8217;s AI <a href=\"https:\/\/www.guvi.in\/mlp\/genai-ebook\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=How+to+Stream+Claude+Responses+with+the+API\" target=\"_blank\" rel=\"noreferrer noopener\">Ebook<\/a> provides beginner-friendly explanations and practical examples to help you build a strong foundation.<\/em><\/span><\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Python Example for Streaming Claude Responses<\/strong><\/h2>\n\n\n\n<p>The official Anthropic Python SDK makes it easy to stream Claude&#8217;s responses in real time.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from anthropic import Anthropic\n\nclient = Anthropic(api_key=\"YOUR_API_KEY\")\n\nwith client.messages.stream(\n\n&nbsp;&nbsp;&nbsp;model=\"claude-sonnet-4-0\",\n\n&nbsp;&nbsp;&nbsp;max_tokens=512,\n\n&nbsp;&nbsp;&nbsp;messages=&#91;\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"role\": \"user\",\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"content\": \"Explain how streaming APIs work.\"\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}\n\n&nbsp;&nbsp;&nbsp;],\n\n) as stream:\n\n&nbsp;&nbsp;&nbsp;for text in stream.text_stream:\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(text, end=\"\", flush=True)<\/code><\/pre>\n\n\n\n<p>Instead of waiting for the complete response, the SDK prints each chunk of text as Claude generates it, creating a smoother user experience.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>JavaScript Example for Streaming Claude Responses<\/strong><\/h2>\n\n\n\n<p>The Anthropic JavaScript SDK also supports response streaming with minimal code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import Anthropic from \"@anthropic-ai\/sdk\";\n\nconst client = new Anthropic({\n\n&nbsp;apiKey: process.env.ANTHROPIC_API_KEY,\n\n});\n\nconst stream = await client.messages.stream({\n\n&nbsp;model: \"claude-sonnet-4-0\",\n\n&nbsp;max_tokens: 512,\n\n&nbsp;messages: &#91;\n\n&nbsp;&nbsp;&nbsp;{\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;role: \"user\",\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;content: \"Explain streaming APIs.\"\n\n&nbsp;&nbsp;&nbsp;}\n\n&nbsp;]\n\n});\n\nfor await (const text of stream.textStream) {\n\n&nbsp;process.stdout.write(text);\n\n}<\/code><\/pre>\n\n\n\n<p>Both SDKs automatically handle the streaming events, allowing developers to focus on updating their application&#8217;s interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Best Practices for Streaming Claude API Responses<\/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\/2026\/07\/image-206-1200x630.png\" alt=\"\" class=\"wp-image-122830\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206-1536x807.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206-150x79.png 150w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/image-206.png 1731w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Follow these best practices to build responsive and reliable AI applications:<\/p>\n\n\n\n<ul>\n<li>Use the official Anthropic SDK whenever possible.<\/li>\n\n\n\n<li>Handle network interruptions gracefully.<\/li>\n\n\n\n<li>Update the interface as new text arrives.<\/li>\n\n\n\n<li>Display loading indicators while the stream starts.<\/li>\n\n\n\n<li>Validate API errors and timeout events.<\/li>\n<\/ul>\n\n\n\n<p>These practices improve both performance and user experience.<\/p>\n\n\n\n<p>Want to build AI applications like real-time chatbots, coding assistants, and intelligent automation tools? <strong>HCL GUVI&#8217;s <\/strong><a href=\"https:\/\/www.guvi.in\/courses\/english\/bundles\/artificial-intelligence-machine-learning\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=How+to+Stream+Claude+Responses+with+the+API\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>AI &amp; Machine Learning<\/strong><\/a><strong> Course<\/strong> equips you with the practical skills to work with LLMs, AI APIs, prompt engineering, and machine learning through hands-on projects.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Mistakes to Avoid<\/strong><\/h2>\n\n\n\n<p>Avoid these common issues when implementing Claude streaming:<\/p>\n\n\n\n<ul>\n<li>Forgetting to set &#8220;stream&#8221;: true<\/li>\n\n\n\n<li>Not handling Server-Sent Events (SSE)<\/li>\n\n\n\n<li>Waiting for the full response before updating the UI<\/li>\n\n\n\n<li>Ignoring stream completion events<\/li>\n\n\n\n<li>Not handling API or network errors<\/li>\n<\/ul>\n\n\n\n<div style=\"\n  margin: 40px 0;\n  border: 1px solid #d9efe2;\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n  font-family: Arial, sans-serif;\n\">\n\n  <!-- Question -->\n  <div style=\"\n    background: #099f4e;\n    color: #ffffff;\n    padding: 18px 24px;\n  \">\n    <h2 style=\"\n      margin: 0;\n      font-size: 24px;\n      font-weight: 700;\n      line-height: 1.4;\n      color: #ffffff;\n    \">\n      Does Streaming Make Claude Generate Responses Faster?\n    <\/h2>\n  <\/div>\n\n  <!-- Answer -->\n  <div style=\"\n    background: #f8fffb;\n    padding: 24px;\n  \">\n    <p style=\"\n      margin: 0;\n      color: #374151;\n      font-size: 16px;\n      line-height: 1.8;\n    \">\n      No. Streaming does not make Claude generate responses faster\u2014it simply displays the generated text as soon as it becomes available instead of waiting for the entire response to finish. This reduces perceived latency and makes AI applications feel faster, smoother, and more responsive, resulting in a better user experience for chatbots, assistants, and other interactive applications.\n    <\/p>\n  <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Learning how to <strong>stream Claude API responses<\/strong> enables developers to build faster and more engaging AI applications. By enabling &#8220;stream&#8221;: true and handling <strong>Server-Sent Events (SSE)<\/strong>, you can display responses in real time, improving the experience for users. Whether you&#8217;re building chatbots, writing assistants, or customer support tools, streaming is an effective way to deliver responsive AI interactions.<\/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-1783909051592\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What does it mean to stream Claude API responses?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Streaming allows Claude to send generated text incrementally instead of waiting until the entire response is complete.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909057883\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. How do I enable streaming in the Claude API?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Include &#8220;stream&#8221;: true in your Messages API request to receive responses through Server-Sent Events (SSE).<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909068625\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. What protocol does Claude use for streaming?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Claude uses <strong>Server-Sent Events (SSE)<\/strong> to stream response chunks in real time.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909077922\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Which programming languages support Claude streaming?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The official Anthropic SDKs support streaming in <strong>Python<\/strong>, <strong>JavaScript<\/strong>, and <strong>TypeScript<\/strong>, among other languages.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909090499\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Is streaming faster than standard API responses?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Streaming doesn&#8217;t reduce model processing time, but it improves perceived speed by displaying generated text immediately.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909098735\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>6. Can I use Claude streaming for chatbot applications?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Streaming is ideal for AI chatbots, coding assistants, writing tools, customer support systems, and other real-time AI applications.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783909107934\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>7. Where can I learn more about the Claude API streaming?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Refer to Anthropic&#8217;s official developer documentation for the latest streaming examples, SDKs, and implementation guides.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re building AI chatbots or real-time applications, learning how to stream Claude API responses can significantly improve the user experience. Instead of waiting for an entire response, Claude streams text incrementally using Server-Sent Events (SSE), making applications feel faster and more interactive. TL;DR Summary If you&#8217;re new to AI development,&nbsp; HCL GUVI&#8217;s AI &amp; [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":123678,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[933],"tags":[],"views":"24","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/how-to-stream-claude-responses-300x116.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/122820"}],"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=122820"}],"version-history":[{"count":5,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/122820\/revisions"}],"predecessor-version":[{"id":123679,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/122820\/revisions\/123679"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/123678"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=122820"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=122820"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=122820"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}