{"id":1340,"date":"2026-05-07T09:00:00","date_gmt":"2026-05-06T20:00:00","guid":{"rendered":"https:\/\/blog.wiseowls.co.nz\/?p=1340"},"modified":"2026-03-08T01:47:39","modified_gmt":"2026-03-07T12:47:39","slug":"running-snapclient-with-pulseaudio-on-raspbian","status":"publish","type":"post","link":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/","title":{"rendered":"Running snapclient with pulseaudio on Raspbian"},"content":{"rendered":"\n<p>Multi-room audio is one of those things that sounds like it should be simple. You&#8217;ve got speakers, you&#8217;ve got a network \u2014 just pipe audio from A to B, right? Well, not quite. One of our clients wanted whole-house audio using Raspberry Pis as receivers with <a href=\"https:\/\/github.com\/badaix\/snapcast\">Snapcast<\/a>, and while the server side was straightforward, getting snapclient to talk to PulseAudio on a fresh Raspbian Bookworm install turned into a bit of a detour.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The problem<\/h2>\n\n\n\n<p>Out of the box, snapclient on Raspbian Bookworm can&#8217;t connect to PulseAudio. The service starts, but there&#8217;s no sound \u2014 and the logs are full of connection refused errors. Since these Pis are headless appliances with no desktop environment, PulseAudio isn&#8217;t running in a user session where snapclient can reach it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Going system-wide<\/h2>\n\n\n\n<p>The fix is to run PulseAudio as a system-wide daemon. Not everyone&#8217;s favourite approach \u2014 the PulseAudio docs will wag a finger at you \u2014 but for a headless audio appliance it&#8217;s the pragmatic choice.<\/p>\n\n\n\n<p>First, we create a systemd service for PulseAudio:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo nano \/etc\/systemd\/system\/pulseaudio.service<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"toml\" class=\"language-toml\">[Unit]\nDescription=PulseAudio Daemon\n\n[Install]\nWantedBy=multi-user.target\n\n[Service]\nType=simple\nExecStart=\/usr\/bin\/pulseaudio --system --realtime --disallow-exit --no-cpu-limit\nRestart=on-failure\nLimitRTPRIO=1000\nLimitNICE=-20\nLimitMEMLOCK=256M<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Making snapclient wait its turn<\/h2>\n\n\n\n<p>Next, we update the snapclient service to depend on PulseAudio \u2014 otherwise it might start before PulseAudio is ready and sulk about it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo nano \/etc\/systemd\/system\/multi-user.target.wants\/snapclient.service<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"ini\" class=\"language-ini\">[Unit]\nDescription=Snapcast client\nDocumentation=man:snapclient(1)\nWants=avahi-daemon.service\nAfter=network-online.target time-sync.target sound.target avahi-daemon.service pulseaudio.service\n\n[Service]\nEnvironmentFile=-\/etc\/default\/snapclient\nExecStart=\/usr\/bin\/snapclient --logsink=system $SNAPCLIENT_OPTS\nUser=snapclient\nGroup=snapclient\nRestart=on-failure\n\n[Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p>Note the <code>pulseaudio.service<\/code> added to the <code>After=<\/code> line.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Permissions and config<\/h2>\n\n\n\n<p>The snapclient user needs to be in the <code>pulse-access<\/code> group to talk to the system-wide PulseAudio daemon:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">adduser snapclient pulse-access<\/code><\/pre>\n\n\n\n<p>And finally, we tell snapclient to actually use PulseAudio as its output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">sudo nano \/etc\/default\/snapclient<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"ini\" class=\"language-ini\">START_SNAPCLIENT=true\nSNAPCLIENT_OPTS=\"--player pulse\"<\/code><\/pre>\n\n\n\n<p>Reboot the Pi and that&#8217;s it \u2014 audio sorted.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Multi-room audio is one of those things that sounds like it should be simple. You&#8217;ve got speakers, you&#8217;ve got a network \u2014 just pipe audio from A to B, right? Well, not quite. One of our clients wanted whole-house audio using Raspberry Pis as receivers with Snapcast, and while the server side was straightforward, getting &hellip; <a href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Running snapclient with pulseaudio on Raspbian&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":966,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-1340","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infrastructure"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Running snapclient with pulseaudio on Raspbian - Timur and associates<\/title>\n<meta name=\"description\" content=\"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Running snapclient with pulseaudio on Raspbian - Timur and associates\" \/>\n<meta property=\"og:description\" content=\"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/\" \/>\n<meta property=\"og:site_name\" content=\"Timur and associates\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-06T20:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"883\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"timur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TimurKh\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/\"},\"author\":{\"name\":\"timur\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"headline\":\"Running snapclient with pulseaudio on Raspbian\",\"datePublished\":\"2026-05-06T20:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/\"},\"wordCount\":245,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"articleSection\":[\"Infrastructure\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/\",\"name\":\"Running snapclient with pulseaudio on Raspbian - Timur and associates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"datePublished\":\"2026-05-06T20:00:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"description\":\"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"width\":2560,\"height\":883},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2026\\\/05\\\/07\\\/running-snapclient-with-pulseaudio-on-raspbian\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Running snapclient with pulseaudio on Raspbian\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\",\"name\":\"Timur and associates\",\"description\":\"Notes of an IT contractor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\",\"name\":\"timur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"caption\":\"timur\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/TimurKh\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Running snapclient with pulseaudio on Raspbian - Timur and associates","description":"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.","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:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/","og_locale":"en_US","og_type":"article","og_title":"Running snapclient with pulseaudio on Raspbian - Timur and associates","og_description":"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.","og_url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/","og_site_name":"Timur and associates","article_published_time":"2026-05-06T20:00:00+00:00","og_image":[{"width":2560,"height":883,"url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"timur","twitter_card":"summary_large_image","twitter_creator":"@TimurKh","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#article","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/"},"author":{"name":"timur","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"headline":"Running snapclient with pulseaudio on Raspbian","datePublished":"2026-05-06T20:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/"},"wordCount":245,"commentCount":0,"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","articleSection":["Infrastructure"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/","url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/","name":"Running snapclient with pulseaudio on Raspbian - Timur and associates","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#primaryimage"},"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","datePublished":"2026-05-06T20:00:00+00:00","author":{"@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"description":"Getting snapclient to play nice with PulseAudio on headless Raspbian Bookworm takes a few systemd tweaks.","breadcrumb":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#primaryimage","url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","contentUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","width":2560,"height":883},{"@type":"BreadcrumbList","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2026\/05\/07\/running-snapclient-with-pulseaudio-on-raspbian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.wiseowls.co.nz\/"},{"@type":"ListItem","position":2,"name":"Running snapclient with pulseaudio on Raspbian"}]},{"@type":"WebSite","@id":"https:\/\/blog.wiseowls.co.nz\/#website","url":"https:\/\/blog.wiseowls.co.nz\/","name":"Timur and associates","description":"Notes of an IT contractor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.wiseowls.co.nz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59","name":"timur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","url":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","caption":"timur"},"sameAs":["https:\/\/x.com\/TimurKh"]}]}},"_links":{"self":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/1340","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/comments?post=1340"}],"version-history":[{"count":4,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/1340\/revisions"}],"predecessor-version":[{"id":1380,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/1340\/revisions\/1380"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media\/966"}],"wp:attachment":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media?parent=1340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/categories?post=1340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/tags?post=1340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}