{"id":1867,"date":"2025-02-28T06:45:27","date_gmt":"2025-02-28T06:45:27","guid":{"rendered":"https:\/\/200oksolutions.com\/blog\/?p=1867"},"modified":"2025-12-04T07:44:04","modified_gmt":"2025-12-04T07:44:04","slug":"how-to-integrate-bluesky-api-with-power-automate","status":"publish","type":"post","link":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/","title":{"rendered":"How to Integrate Bluesky API with Power Automate"},"content":{"rendered":"\n<p>In this blog, we will demonstrate how to integrate the Bluesky Post Search API with Power Automate to pull posts based on specific queries and store the results (news) in a SharePoint list. This will help businesses streamline news collection and automatically store relevant posts directly into SharePoint for easy management.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites:<\/h2>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Bluesky API<\/strong>: Ensure that you have access to the Bluesky Post Search API.<\/li>\n\n\n\n<li><strong>Power Automate<\/strong>: A Power Automate subscription with access to create flows.<\/li>\n\n\n\n<li><strong>SharePoint Site<\/strong>: A SharePoint site with a list created to store the data (e.g., &#8220;News Posts&#8221; list with columns like Title, URL, and Post Content).<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Set Up Your SharePoint List<\/h3>\n\n\n\n<p>First, create a SharePoint list where you will store the fetched data. Your list can have the following columns:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Title<\/strong> (Text) &#8211; The title of the post<\/li>\n\n\n\n<li><strong>Post Content<\/strong> (Multiple lines of text) &#8211; The content or summary of the post<\/li>\n\n\n\n<li><strong>URL<\/strong> (Hyperlink) &#8211; A direct link to the original post<\/li>\n\n\n\n<li><strong>Created Date<\/strong> (Date and Time) &#8211; Date when the post was fetched<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create a Power Automate Flow<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Go to Power Automate<\/strong>: Open <a href=\"https:\/\/flow.microsoft.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Power Automate<\/a> and sign in with your credentials.<\/li>\n\n\n\n<li><strong>Create a New Flow<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Select <strong>Create<\/strong> in the left sidebar.<\/li>\n\n\n\n<li>Choose <strong>Automated flow<\/strong> to trigger the process automatically.<\/li>\n\n\n\n<li>Name your flow (e.g., &#8220;Bluesky Post Search Integration&#8221;).<\/li>\n\n\n\n<li>Choose the trigger based on your needs, for example, a <strong>Recurrence<\/strong> trigger to fetch new posts every hour or day.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Add an HTTP Request to Call Bluesky API<\/strong>:\n<ul class=\"wp-block-list\">\n<li>In your flow, add a new <strong>HTTP<\/strong> action after the recurrence trigger.<\/li>\n\n\n\n<li>Configure the HTTP request with the Bluesky Post Search API URL and necessary headers:\n<ul class=\"wp-block-list\">\n<li><strong>Method<\/strong>: GET<\/li>\n\n\n\n<li><strong>URI<\/strong>: https:\/\/api.bluesky.social\/v1\/posts\/search?query=YOUR_QUERY_HERE (replace YOUR_QUERY_HERE with your actual search query)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<p><br>Example:<\/p>\n\n\n\n<p>Method: GET<\/p>\n\n\n\n<p>URI: <a href=\"https:\/\/api.bluesky.social\/v1\/posts\/search?query=technology\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/api.bluesky.social\/v1\/posts\/search?query=technology<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"602\" height=\"338\" src=\"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp\" alt=\"\" class=\"wp-image-1869\" srcset=\"https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp 602w, https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16-300x168.webp 300w\" sizes=\"(max-width: 602px) 100vw, 602px\" \/><\/figure>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li><strong>Parse the Response<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Add a <strong>Parse JSON<\/strong> action to handle the data returned by the API.<\/li>\n\n\n\n<li>Use the output from the HTTP action as the input for the Parse JSON action.<\/li>\n\n\n\n<li>The schema for the response might look like this (based on Bluesky API response):<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"628\" height=\"335\" src=\"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture2-11.webp\" alt=\"\" class=\"wp-image-1870\" srcset=\"https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture2-11.webp 628w, https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture2-11-300x160.webp 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" \/><\/figure>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li><strong>Loop Through the Posts<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Add an <strong>Apply to each<\/strong> action to loop through the posts returned from the API response.<\/li>\n\n\n\n<li>Inside the loop, you\u2019ll be adding the action to store the post in SharePoint.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Add SharePoint Action<\/strong>:\n<ul class=\"wp-block-list\">\n<li>After the loop, add the <strong>Create item<\/strong> action for SharePoint.<\/li>\n\n\n\n<li>Select your SharePoint site and the list you created in Step 1.<\/li>\n\n\n\n<li>Map the fields from the API response to the SharePoint columns:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"511\" height=\"535\" src=\"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture3-8.webp\" alt=\"\" class=\"wp-image-1871\" srcset=\"https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture3-8.webp 511w, https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture3-8-287x300.webp 287w\" sizes=\"(max-width: 511px) 100vw, 511px\" \/><\/figure>\n\n\n\n<p>Example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Title<\/strong>: items(&#8216;Apply_to_each&#8217;)?[&#8216;text&#8217;]<\/li>\n\n\n\n<li><strong>Post Content<\/strong>: items(&#8216;Apply_to_each&#8217;)?[&#8216;text&#8217;]<\/li>\n\n\n\n<li><strong>URL<\/strong>: items(&#8216;Apply_to_each&#8217;)?[&#8216;url&#8217;]<\/li>\n\n\n\n<li><strong>Created Date<\/strong>: items(&#8216;Apply_to_each&#8217;)?[&#8216;created_at&#8217;]<\/li>\n<\/ul>\n\n\n\n<p>7 <strong>Save and Test<\/strong>: Save your flow and run a test to make sure that the data is being pulled from Bluesky and stored in the SharePoint list correctly.<\/p>\n\n\n\n<ol start=\"6\" class=\"wp-block-list\"><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Monitor the Flow<\/h3>\n\n\n\n<p>Once your flow is set up, you can monitor it directly within Power Automate. If there are any issues or errors, you can troubleshoot by looking at the run history of the flow.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Automate the Search<\/h3>\n\n\n\n<p>You can schedule the flow to run periodically to fetch the latest posts based on your search query. You can adjust the frequency of the recurrence trigger to suit your needs (e.g., every hour, every day, etc.).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>By following this guide, you can easily integrate Bluesky\u2019s Post Search API with Power Automate and store the latest posts in a SharePoint list. This integration can be used for a variety of use cases, such as monitoring industry news, collecting customer feedback, or tracking social media trends for your business.<\/p>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>At <strong>200OK Solutions<\/strong>, we specialize in seamless API integrations that enhance efficiency and productivity. In this guide, we explore how to <strong>integrate Bluesky API with Power Automate<\/strong>, enabling businesses to automate tasks effortlessly. Whether you&#8217;re looking to streamline workflows, enhance data synchronization, or improve operational efficiency, our step-by-step tutorial provides expert insights and practical solutions tailored to your needs. Let <strong>200OK Solutions<\/strong> help you unlock the full potential of API automation with Microsoft Power Automate! \ud83d\ude80<\/summary><div class=\"is-default-size wp-block-site-logo\"><a href=\"https:\/\/www.200oksolutions.com\/blog\/\" class=\"custom-logo-link light-mode-logo\" rel=\"home\"><img loading=\"lazy\" decoding=\"async\" width=\"484\" height=\"191\" src=\"https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2026\/01\/cropped-200ok_logo.png\" class=\"custom-logo\" alt=\"Web Development, Software, and App Blog | 200OK Solutions\" srcset=\"https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2026\/01\/cropped-200ok_logo.png 484w, https:\/\/www.200oksolutions.com\/blog\/wp-content\/uploads\/2026\/01\/cropped-200ok_logo-300x118.png 300w\" sizes=\"(max-width: 484px) 100vw, 484px\" \/><\/a><\/div><\/details>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will demonstrate how to integrate the Bluesky Post Search API with Power Automate&hellip;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[631,630,628,629,217,120,219],"class_list":["post-1867","post","type-post","status-publish","format-standard","hentry","category-share-point","tag-api-automation","tag-api-integration","tag-bluesky-api","tag-cloud-integration","tag-microsoft-power-automate","tag-power-automate","tag-workflow-automation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Integrate Bluesky API with Power Automate Web Development, Software, and App Blog | 200OK Solutions<\/title>\n<meta name=\"description\" content=\"Learn how to integrate Bluesky API with Power Automate to automate tasks seamlessly. Step-by-step guide with real-world use cases.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Integrate Bluesky API with Power Automate Web Development, Software, and App Blog | 200OK Solutions\" \/>\n<meta property=\"og:description\" content=\"Learn how to integrate Bluesky API with Power Automate to automate tasks seamlessly. Step-by-step guide with real-world use cases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Development, Software, and App Blog | 200OK Solutions\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-28T06:45:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-04T07:44:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp\" \/>\n<meta name=\"author\" content=\"Piyush Solanki\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Piyush Solanki\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Integrate Bluesky API with Power Automate Web Development, Software, and App Blog | 200OK Solutions","description":"Learn how to integrate Bluesky API with Power Automate to automate tasks seamlessly. Step-by-step guide with real-world use cases.","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:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/","og_locale":"en_US","og_type":"article","og_title":"How to Integrate Bluesky API with Power Automate Web Development, Software, and App Blog | 200OK Solutions","og_description":"Learn how to integrate Bluesky API with Power Automate to automate tasks seamlessly. Step-by-step guide with real-world use cases.","og_url":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/","og_site_name":"Web Development, Software, and App Blog | 200OK Solutions","article_published_time":"2025-02-28T06:45:27+00:00","article_modified_time":"2025-12-04T07:44:04+00:00","og_image":[{"url":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp","type":"","width":"","height":""}],"author":"Piyush Solanki","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Piyush Solanki","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#article","isPartOf":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/"},"author":{"name":"Piyush Solanki","@id":"https:\/\/www.200oksolutions.com\/blog\/#\/schema\/person\/e07f6b8e3c9a90ce7b3b09427d26155e"},"headline":"How to Integrate Bluesky API with Power Automate","datePublished":"2025-02-28T06:45:27+00:00","dateModified":"2025-12-04T07:44:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/"},"wordCount":694,"commentCount":0,"publisher":{"@id":"https:\/\/www.200oksolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#primaryimage"},"thumbnailUrl":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp","keywords":["API Automation","API Integration","Bluesky API","Cloud Integration","Microsoft Power Automate","Power Automate","Workflow Automation"],"articleSection":["SharePoint"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/","url":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/","name":"How to Integrate Bluesky API with Power Automate Web Development, Software, and App Blog | 200OK Solutions","isPartOf":{"@id":"https:\/\/www.200oksolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#primaryimage"},"image":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#primaryimage"},"thumbnailUrl":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp","datePublished":"2025-02-28T06:45:27+00:00","dateModified":"2025-12-04T07:44:04+00:00","description":"Learn how to integrate Bluesky API with Power Automate to automate tasks seamlessly. Step-by-step guide with real-world use cases.","breadcrumb":{"@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#primaryimage","url":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp","contentUrl":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/02\/Picture1-16.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/www.200oksolutions.com\/blog\/how-to-integrate-bluesky-api-with-power-automate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.200oksolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Integrate Bluesky API with Power Automate"}]},{"@type":"WebSite","@id":"https:\/\/www.200oksolutions.com\/blog\/#website","url":"https:\/\/www.200oksolutions.com\/blog\/","name":"Web Development, Software, and App Blog | 200OK Solutions","description":"","publisher":{"@id":"https:\/\/www.200oksolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.200oksolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.200oksolutions.com\/blog\/#organization","name":"Web Development Blog | Software Blog | App Blog","url":"https:\/\/www.200oksolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.200oksolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/09\/200ok_logo-CGzMrWDu.png","contentUrl":"https:\/\/200oksolutions.com\/blog\/wp-content\/uploads\/2025\/09\/200ok_logo-CGzMrWDu.png","width":500,"height":191,"caption":"Web Development Blog | Software Blog | App Blog"},"image":{"@id":"https:\/\/www.200oksolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/200ok_solutions\/"]},{"@type":"Person","@id":"https:\/\/www.200oksolutions.com\/blog\/#\/schema\/person\/e07f6b8e3c9a90ce7b3b09427d26155e","name":"Piyush Solanki","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.200oksolutions.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/962a2b0b4db856e6851ec7d838597a0395adcaae9c0091d223de9942a4254461?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/962a2b0b4db856e6851ec7d838597a0395adcaae9c0091d223de9942a4254461?s=96&d=mm&r=g","caption":"Piyush Solanki"},"description":"Piyush is a seasoned PHP Tech Lead with 10+ years of experience architecting and delivering scalable web and mobile backend solutions for global brands and fast-growing SMEs. He specializes in PHP, MySQL, CodeIgniter, WordPress, and custom API development, helping businesses modernize legacy systems and launch secure, high-performance digital products. He collaborates closely with mobile teams building Android &amp; iOS apps , developing RESTful APIs, cloud integrations, and secure payment systems using platforms like Stripe, AWS S3, and OTP\/SMS gateways. His work extends across CMS customization, microservices-ready backend architectures, and smooth product deployments across Linux and cloud-based environments. Piyush also has a strong understanding of modern front-end technologies such as React and TypeScript, enabling him to contribute to full-stack development workflows and advanced admin panels. With a successful delivery track record in the UK market and experience building digital products for sectors like finance, hospitality, retail, consulting, and food services, Piyush is passionate about helping SMEs scale technology teams, improve operational efficiency, and accelerate innovation through backend excellence and digital tools.","url":"https:\/\/www.200oksolutions.com\/blog\/author\/piyush\/"}]}},"_links":{"self":[{"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1867","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1867"}],"version-history":[{"count":4,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1867\/revisions"}],"predecessor-version":[{"id":1877,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1867\/revisions\/1877"}],"wp:attachment":[{"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1867"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1867"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.200oksolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}