{"id":476,"date":"2025-01-24T12:59:27","date_gmt":"2025-01-24T04:59:27","guid":{"rendered":"https:\/\/witlab.ph\/blog\/?p=476"},"modified":"2025-11-04T13:43:54","modified_gmt":"2025-11-04T05:43:54","slug":"expo-router","status":"publish","type":"post","link":"https:\/\/witlab.ph\/blog\/expo-router\/","title":{"rendered":"Expo Router"},"content":{"rendered":"\n<h6 class=\"wp-block-heading\"><br><strong>What is Expo Router?<\/strong><\/h6>\n\n\n\n<p>Expo Router is a file-based router designed for Expo and React Native applications. Inspired by web frameworks like Next.js, it aims to simplify navigation and promote scalable app architecture.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Why Does It Matter?<\/strong><\/h6>\n\n\n\n<p>Expo Router matters because it streamlines the navigation process in your app, making it easier to manage and scale. By adopting a file-based routing approach, it eliminates the need for manual route configurations, allowing developers to focus on building features rather than managing navigation.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Features<\/strong><br><\/h3>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>File-Based Routing<\/strong><\/h6>\n\n\n\n<p>With Expo Router, routes are defined by the file structure of your project. This means you don&#8217;t need to manage route configurations manually. Simply create files and folders, and Expo Router will handle the rest.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Dynamic Routing<\/strong><\/h6>\n\n\n\n<p>Expo Router supports dynamic and nested routes. For example, you can create a dynamic segment by naming a file\u00a0<code>[id].js<\/code>, which will match any URL segment and pass it as a parameter to your component.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Deep Linking<\/strong><\/h6>\n\n\n\n<p>Expo Router comes with built-in support for deep linking, making it easy to navigate to specific parts of your app from external sources.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Integration with Expo<\/strong><\/h6>\n\n\n\n<p>Expo Router seamlessly integrates with Expo&#8217;s tools and workflows, providing a smooth development experience.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Hot Module Reloading<\/strong><\/h6>\n\n\n\n<p>With hot module reloading, you can instantly see changes in your app without needing to restart it. This feature significantly speeds up the development process.<br><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Platform Agnostic<\/strong><\/h6>\n\n\n\n<p>Expo Router works across Android, iOS, and web, ensuring a consistent navigation experience on all platforms.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why Use Expo Router?<\/strong><br><\/h3>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Ease of Use<\/strong><\/h6>\n\n\n\n<p>Expo Router offers a simple file-based routing model that is easy to understand and implement.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Scalability<\/strong><\/h6>\n\n\n\n<p>Whether you&#8217;re building a small app or a large-scale application, Expo Router scales with your needs.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Consistency<\/strong><\/h6>\n\n\n\n<p>Expo Router&#8217;s structure is similar to web development frameworks, providing a familiar environment for developers transitioning from web to mobile development.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Deep Linking Made Easy<\/strong><\/h6>\n\n\n\n<p>Expo Router works out of the box with Expo and React Navigation, making deep linking straightforward. For example, you can use a URL like&nbsp;<code>expo:\/\/myapp.com\/details\/123<\/code>&nbsp;to navigate directly to a specific detail page in your app.<\/p>\n\n\n\n<p><strong>How It Works<\/strong><br>File Structure Example<br>Here&#8217;s an example of a file structure using Expo Router:<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"brush:javascript\">\n\/pages (stack)\n- layout.jsx\n- index.jsx (Home Page) (stack.screen)\n- about.jsx (About Page) (stack.screen)\n- [id].js (Dynamic Route) (stack.screen)\n<\/pre>\n\n\n\n<p>In this structure, each file represents a route in your app. The layout.jsx file defines the layout for the stack, while index.jsx, about.jsx, and [id].js define individual screens.<\/p>\n<\/div><\/div>\n\n\n\n<p class=\"has-large-font-size\"><strong>Limitations<\/strong><\/p>\n\n\n\n<p><strong>Learning Curve<\/strong><br>Expo Router requires familiarity with file-based routing, which might be new to some developers.<\/p>\n\n\n\n<p><strong>Custom Configurations<\/strong><br>Advanced customizations might need extra setup, which could be challenging for beginners.<\/p>\n\n\n\n<p><strong>Dependency on Expo Ecosystem<\/strong><br>Expo Router is best suited for projects built with Expo. If you&#8217;re not using Expo, you might need to look for alternative solutions.<\/p>\n\n\n\n<p><strong>Limited Advanced Features<\/strong><br>For highly complex navigation scenarios, you might need to extend Expo Router with additional tools or libraries.<\/p>\n\n\n\n<p class=\"has-large-font-size\"><strong>Resources<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"Documentation: Expo Router Docs\nGitHub: Expo Router GitHub\nTutorials: YouTube Expo Router Tutorials\">Documentation: Expo Router Docs<\/a><\/li>\n\n\n\n<li><a href=\"Documentation: Expo Router Docs\nGitHub: Expo Router GitHub\nTutorials: YouTube Expo Router Tutorials\">GitHub: Expo Router GitHub<\/a><\/li>\n\n\n\n<li><a href=\"Documentation: Expo Router Docs\nGitHub: Expo Router GitHub\nTutorials: YouTube Expo Router Tutorials\">Tutorials: YouTube Expo Router Tutorials<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-large-font-size\"><strong>Conclusions<\/strong><\/p>\n\n\n\n<p>Expo Router is a powerful tool for managing navigation in Expo and React Native apps. Its file-based routing model simplifies the development process, making it easier to build and scale applications. While there are some limitations, the benefits of using Expo Router make it a valuable addition to any Expo project. Whether you&#8217;re building a small app or a large-scale application, Expo Router provides the tools you need to create a seamless navigation experience.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Expo Router? Expo Router is a file-based router designed for Expo and React Native applications. Inspired by web frameworks like Next.js, it aims to simplify navigation and promote scalable app architecture. Why Does It Matter? Expo Router matters because it streamlines the navigation process in your app, making it easier to manage and [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":565,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-476","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-system"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Expo Router - WIT LAB %<\/title>\n<meta name=\"description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/witlab.ph\/blog\/expo-router\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Expo Router - WIT LAB %\" \/>\n<meta property=\"og:description\" content=\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/witlab.ph\/blog\/expo-router\/\" \/>\n<meta property=\"og:site_name\" content=\"WIT LAB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-24T04:59:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-04T05:43:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"366\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Thuta Yar Moe\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thuta Yar Moe\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/\"},\"author\":{\"name\":\"Thuta Yar Moe\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617\"},\"headline\":\"Expo Router\",\"datePublished\":\"2025-01-24T04:59:27+00:00\",\"dateModified\":\"2025-11-04T05:43:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/\"},\"wordCount\":563,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png\",\"articleSection\":[\"System\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/witlab.ph\/blog\/expo-router\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/\",\"url\":\"https:\/\/witlab.ph\/blog\/expo-router\/\",\"name\":\"Expo Router - WIT LAB %\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png\",\"datePublished\":\"2025-01-24T04:59:27+00:00\",\"dateModified\":\"2025-11-04T05:43:54+00:00\",\"description\":\"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.\",\"breadcrumb\":{\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/witlab.ph\/blog\/expo-router\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png\",\"width\":700,\"height\":366},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/witlab.ph\/blog\/expo-router\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/witlab.ph\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expo Router\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/witlab.ph\/blog\/#website\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"name\":\"WIT LAB\",\"description\":\"Web Development\",\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"alternateName\":\"WIT LAB INC\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/witlab.ph\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\",\"name\":\"WIT LAB INC\",\"alternateName\":\"Spiceworks (Japan)\",\"url\":\"https:\/\/witlab.ph\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png\",\"width\":681,\"height\":616,\"caption\":\"WIT LAB INC\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617\",\"name\":\"Thuta Yar Moe\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g\",\"caption\":\"Thuta Yar Moe\"},\"url\":\"https:\/\/witlab.ph\/blog\/author\/thuta\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Expo Router - WIT LAB %","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","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:\/\/witlab.ph\/blog\/expo-router\/","og_locale":"en_US","og_type":"article","og_title":"Expo Router - WIT LAB %","og_description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","og_url":"https:\/\/witlab.ph\/blog\/expo-router\/","og_site_name":"WIT LAB","article_publisher":"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/","article_published_time":"2025-01-24T04:59:27+00:00","article_modified_time":"2025-11-04T05:43:54+00:00","og_image":[{"width":700,"height":366,"url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png","type":"image\/png"}],"author":"Thuta Yar Moe","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Thuta Yar Moe","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/witlab.ph\/blog\/expo-router\/#article","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/"},"author":{"name":"Thuta Yar Moe","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617"},"headline":"Expo Router","datePublished":"2025-01-24T04:59:27+00:00","dateModified":"2025-11-04T05:43:54+00:00","mainEntityOfPage":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/"},"wordCount":563,"commentCount":0,"publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"image":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png","articleSection":["System"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/witlab.ph\/blog\/expo-router\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/witlab.ph\/blog\/expo-router\/","url":"https:\/\/witlab.ph\/blog\/expo-router\/","name":"Expo Router - WIT LAB %","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage"},"image":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png","datePublished":"2025-01-24T04:59:27+00:00","dateModified":"2025-11-04T05:43:54+00:00","description":"We excel in utilizing cutting-edge technology, programming languages, and frameworks to deliver high-quality digital solutions.","breadcrumb":{"@id":"https:\/\/witlab.ph\/blog\/expo-router\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/witlab.ph\/blog\/expo-router\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/expo-router\/#primaryimage","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2025\/01\/expo_router_cover.png","width":700,"height":366},{"@type":"BreadcrumbList","@id":"https:\/\/witlab.ph\/blog\/expo-router\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/witlab.ph\/blog\/"},{"@type":"ListItem","position":2,"name":"Expo Router"}]},{"@type":"WebSite","@id":"https:\/\/witlab.ph\/blog\/#website","url":"https:\/\/witlab.ph\/blog\/","name":"WIT LAB","description":"Web Development","publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"alternateName":"WIT LAB INC","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/witlab.ph\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/witlab.ph\/blog\/#organization","name":"WIT LAB INC","alternateName":"Spiceworks (Japan)","url":"https:\/\/witlab.ph\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2024\/09\/logo_witlab-Copy-Copy.png","width":681,"height":616,"caption":"WIT LAB INC"},"image":{"@id":"https:\/\/witlab.ph\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/"]},{"@type":"Person","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/9a653900ccc3f52126d3e372603f3617","name":"Thuta Yar Moe","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2af6b0444bf2ed0e9bc446ac7ee374a?s=96&d=mm&r=g","caption":"Thuta Yar Moe"},"url":"https:\/\/witlab.ph\/blog\/author\/thuta\/"}]}},"_links":{"self":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/476"}],"collection":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/comments?post=476"}],"version-history":[{"count":21,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/476\/revisions"}],"predecessor-version":[{"id":516,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/476\/revisions\/516"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media\/565"}],"wp:attachment":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media?parent=476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/categories?post=476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/tags?post=476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}