{"id":74267,"date":"2026-04-13T21:00:00","date_gmt":"2026-04-13T13:00:00","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=74267"},"modified":"2026-04-02T23:46:52","modified_gmt":"2026-04-02T15:46:52","slug":"hermes-oversee-openclaw-bot","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/","title":{"rendered":"How to Set Up Hermes to Supervise OpenClaw"},"content":{"rendered":"<p>If you already run <a href=\"https:\/\/www.hongkiat.com\/blog\/configure-deepseek-openclaw\/\">OpenClaw<\/a>, you probably know where it starts to feel thin. It can execute well, reply across channels, and run scheduled jobs, but it does not naturally learn from what just happened. It will not wake up one day with better judgment because yesterday went badly.<\/p>\n<p>That is where <a href=\"https:\/\/www.hongkiat.com\/blog\/openclaw-vs-hermes-agent\/\">Hermes Agent<\/a> fits.<\/p>\n<p>Hermes adds the layer OpenClaw is missing: persistent memory, skill synthesis, failure review, and a feedback loop that can improve how your setup works over time. Put them together and you get a split that makes sense. OpenClaw does the work. Hermes watches, reviews, and helps the system improve. If you want background on either side first, start with the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/docs.openclaw.ai\">OpenClaw docs<\/a> and the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/hermes-agent.nousresearch.com\">Hermes docs<\/a>.<\/p>\n<p>This guide shows how to set that up.<\/p>\n<h2 id=\"why-pairing-works\">Why the Pairing Works<\/h2>\n<p>OpenClaw is good at operational work. It handles messaging, scheduled jobs, skills, and reliable task execution.<\/p>\n<p>Hermes is better suited for the meta layer. It can learn from previous runs, turn repeated behavior into reusable skills, compress memory, and act more like a supervisor than a worker.<\/p>\n<p>That split is the whole appeal. You let OpenClaw stay focused on execution while Hermes handles oversight.<\/p>\n<h2 id=\"what-you-need\">What You Need<\/h2>\n<ul>\n<li>A working OpenClaw installation with your <code>~\/.openclaw<\/code> config, skills, and gateway already running<\/li>\n<li>Linux, macOS, or WSL2<\/li>\n<li>Python 3.11 or newer<\/li>\n<li>Access to at least one model provider such as <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/openrouter.ai\">OpenRouter<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.anthropic.com\">Anthropic<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/openai.com\">OpenAI<\/a>, or <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ollama.com\">Ollama<\/a><\/li>\n<li>A VPS or dedicated machine if you want both systems running full-time<\/li>\n<\/ul>\n<h2 id=\"install-hermes-agent\">Install Hermes Agent<\/h2>\n<p>Run this:<\/p>\n<pre>curl -fsSL https:\/\/raw.githubusercontent.com\/NousResearch\/hermes-agent\/main\/scripts\/install.sh | bash<\/pre>\n<p>Then reload your shell:<\/p>\n<pre>source ~\/.bashrc   # or ~\/.zshrc<\/pre>\n<p>Check that it installed correctly:<\/p>\n<pre>hermes --version<\/pre>\n<p>If you want the official walkthrough, use the Hermes docs.<\/p>\n<h2 id=\"migrate-openclaw-setup\">Migrate Your OpenClaw Setup<\/h2>\n<p>Hermes includes a migration path for OpenClaw. If you want to inspect the project itself first, check the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/NousResearch\/hermes-agent\">Hermes GitHub repo<\/a>.<\/p>\n<pre>hermes claw migrate<\/pre>\n<p>Run it with <code>--dry-run<\/code> first if you want to see what will be imported.<\/p>\n<p>If you would rather start fresh, skip the migration and go straight to <code>hermes setup<\/code>.<\/p>\n<h2 id=\"run-setup-wizard\">Run the Setup Wizard<\/h2>\n<pre>hermes setup<\/pre>\n<p>A few choices matter more than the others.<\/p>\n<p><strong>Provider:<\/strong> Use the same model family you trust for OpenClaw. Keeping both systems reasonably aligned makes behavior more predictable.<\/p>\n<p><strong>Messaging adapters:<\/strong> Turn on the same channels OpenClaw already uses, such as Telegram or Discord. That makes it easier for Hermes to observe what OpenClaw is doing in shared spaces.<\/p>\n<p><strong>Gateway:<\/strong> Enable the Hermes gateway service so it can stay available in the background.<\/p>\n<p><strong>Profiles:<\/strong> Create a dedicated supervisor profile with:<\/p>\n<pre>hermes profile create supervisor<\/pre>\n<p>This keeps your oversight instance separate from any other Hermes profiles you may want to run.<\/p>\n<h2 id=\"supervise-openclaw\">Decide How Hermes Should Supervise OpenClaw<\/h2>\n<p>There are three practical ways to do it.<\/p>\n<h3 id=\"chat-supervision\">Chat-Based Supervision<\/h3>\n<p>This is the simplest setup.<\/p>\n<p>Put Hermes and OpenClaw in the same Telegram group, Discord server, or private control channel. Then give Hermes a standing instruction like this:<\/p>\n<pre>You are my OpenClaw supervisor. Monitor @openclawbot. Review every task it completes. Respond with [ACK] to approve, [REJECT] plus a reason to stop, or [IMPROVE] plus suggestions. Log everything to memory and synthesize new skills when patterns emerge.<\/pre>\n<p>That gives Hermes a clear role. OpenClaw does the task. Hermes reviews the result.<\/p>\n<h3 id=\"programmatic-control\">Programmatic Control Through MCP or API<\/h3>\n<p>If you want tighter control, Hermes also ships with MCP support and an OpenAI-compatible API server.<\/p>\n<p>Start Hermes with MCP enabled:<\/p>\n<pre>hermes gateway start --mcp<\/pre>\n<p>Then expose OpenClaw through its gateway, API, or Mission Control dashboard. From there, you can give Hermes a tool that calls OpenClaw directly.<\/p>\n<p>A typical delegation prompt looks like this:<\/p>\n<pre>Use your OpenClaw control tool to delegate this task to the OpenClaw instance, then review the output and learn from it.<\/pre>\n<p>This setup is better if you want Hermes acting like an actual manager instead of just a second bot reading a group chat.<\/p>\n<h3 id=\"hybrid-orchestration\">Hybrid Group Orchestration<\/h3>\n<p>You can also keep things simple:<\/p>\n<ul>\n<li>Hermes acts as the manager<\/li>\n<li>OpenClaw acts as the worker<\/li>\n<li>Hermes reviews failures, stores what it learns, and suggests updates to your OpenClaw skills<\/li>\n<\/ul>\n<p>That model is less formal, but it works well if most of your workflow already lives in chat.<\/p>\n<h2 id=\"learning-monitoring\">Turn on Learning and Monitoring<\/h2>\n<p>Hermes usually enables its learning loop during setup. Once it is running, a few commands are worth checking:<\/p>\n<ul>\n<li><code>hermes skills list<\/code> to see what Hermes has synthesized<\/li>\n<li><code>hermes memory search \"openclaw review\"<\/code> to inspect what it has learned from reviewing OpenClaw activity<\/li>\n<\/ul>\n<p>For long-running setups, keep Hermes in the background with profiles and use either <code>hermes cron<\/code> or OpenClaw\u2019s scheduler for recurring checks.<\/p>\n<h2 id=\"simple-example\">A Simple Example<\/h2>\n<pre>User: Research the latest AI papers and summarize them.\n\nHermes: Delegates the task to OpenClaw, reviews the result, responds with approval or feedback, and turns the workflow into a reusable skill if the pattern repeats.<\/pre>\n<h2 id=\"things-to-watch\">A Few Things to Watch For<\/h2>\n<p><strong>Resource usage:<\/strong> Hermes can get heavy during active learning. Give it enough memory, or use model compression if the machine is tight on RAM.<\/p>\n<p><strong>Security:<\/strong> Hermes creates filesystem snapshots before risky changes. That is useful when you are letting an agent modify files or settings. If you plan to expose either system beyond your laptop or LAN, spend a few minutes reading the deployment and security sections in the docs first.<\/p>\n<p><strong>Migration confusion:<\/strong> If Hermes behaves like it is still OpenClaw after migration, reset the profile and run the migration again.<\/p>\n<p><strong>Multiple instances:<\/strong> Run <code>hermes -p supervisor<\/code> to keep the oversight profile separate from your main Hermes environment.<\/p>\n<h2 id=\"final-thought\">Final Thought<\/h2>\n<p>This setup does not magically make either agent smarter on day one. What it gives you is a cleaner division of labor. OpenClaw executes. Hermes watches what happened, keeps track of patterns, and helps improve the system over time.<\/p>\n<p>If that is what you want, the pairing is worth setting up.<\/p>","protected":false},"excerpt":{"rendered":"<p>Want Hermes to supervise OpenClaw? Here&#8217;s a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3393],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Set Up Hermes to Supervise OpenClaw - Hongkiat<\/title>\n<meta name=\"description\" content=\"Want Hermes to supervise OpenClaw? Here&#039;s a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.\" \/>\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.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up Hermes to Supervise OpenClaw\" \/>\n<meta property=\"og:description\" content=\"Want Hermes to supervise OpenClaw? Here&#039;s a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T13:00:00+00:00\" \/>\n<meta name=\"author\" content=\"Hongkiat Lim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat Lim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/\"},\"author\":{\"name\":\"Hongkiat Lim\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\"},\"headline\":\"How to Set Up Hermes to Supervise OpenClaw\",\"datePublished\":\"2026-04-13T13:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/\"},\"wordCount\":840,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"articleSection\":[\"Toolkit\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/\",\"name\":\"How to Set Up Hermes to Supervise OpenClaw - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-04-13T13:00:00+00:00\",\"description\":\"Want Hermes to supervise OpenClaw? Here's a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/hermes-oversee-openclaw-bot\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up Hermes to Supervise OpenClaw\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\",\"name\":\"Hongkiat Lim\",\"description\":\"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.\",\"sameAs\":[\"http:\\\/\\\/www.hongkiat.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/hongkiat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Set Up Hermes to Supervise OpenClaw - Hongkiat","description":"Want Hermes to supervise OpenClaw? Here's a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.","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.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up Hermes to Supervise OpenClaw","og_description":"Want Hermes to supervise OpenClaw? Here's a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.","og_url":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2026-04-13T13:00:00+00:00","author":"Hongkiat Lim","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat Lim","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/"},"author":{"name":"Hongkiat Lim","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0"},"headline":"How to Set Up Hermes to Supervise OpenClaw","datePublished":"2026-04-13T13:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/"},"wordCount":840,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"articleSection":["Toolkit"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/","url":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/","name":"How to Set Up Hermes to Supervise OpenClaw - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"datePublished":"2026-04-13T13:00:00+00:00","description":"Want Hermes to supervise OpenClaw? Here's a practical setup that gives OpenClaw execution muscle and Hermes the job of learning and oversight.","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/hermes-oversee-openclaw-bot\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up Hermes to Supervise OpenClaw"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0","name":"Hongkiat Lim","description":"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.","sameAs":["http:\/\/www.hongkiat.com\/blog"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/hongkiat\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-jjR","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=74267"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74267\/revisions"}],"predecessor-version":[{"id":74268,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/74267\/revisions\/74268"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=74267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=74267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=74267"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=74267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}