{"id":1090,"date":"2026-04-17T14:00:23","date_gmt":"2026-04-17T06:00:23","guid":{"rendered":"https:\/\/witlab.ph\/blog\/?p=1090"},"modified":"2026-04-22T15:36:53","modified_gmt":"2026-04-22T07:36:53","slug":"what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build","status":"publish","type":"post","link":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/","title":{"rendered":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build"},"content":{"rendered":"\n<p>Most &#8220;AI integrations&#8221; just call an API and return text. An AI agent is different \u2014 it thinks, decides, and acts across multiple steps without you holding its hand. Here is what that actually means and why Laravel&#8217;s AI SDK turns this from a complex architecture problem into a clean, intuitive workflow.<\/p>\n\n\n\n<p><strong>What is an AI agent?<\/strong><\/p>\n\n\n\n<p>A traditional AI call is a single round trip: you send a prompt, the model replies, done. An AI agent is a system that can pursue a goal over multiple steps\u2014using tools, making decisions, and adjusting course based on what it finds.<\/p>\n\n\n\n<p>Think of it like the difference between asking a colleague a question and actually delegating a project to them. The agent handles the back-and-forth until the task is complete.<\/p>\n\n\n\n<iframe loading=\"lazy\" width=\"640\" height=\"366\" src=\"https:\/\/www.youtube.com\/embed\/NWF5Jo0-ziY\" title=\"Intro to Agents: What&#39;s new and what we&#39;ve learned\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n\n\n\n<p><strong>Key features of an AI agent<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It takes actions \u2014 it can call tools, search databases, trigger workflows, or interact with external APIs on its own.<\/li>\n\n\n\n<li>It reasons across steps \u2014 rather than answering once, it breaks problems into sub-tasks and works through them sequentially.<\/li>\n\n\n\n<li>It adapts \u2014 if a tool call fails or returns unexpected data, the agent can try a different approach without crashing.<\/li>\n\n\n\n<li>It has memory within a session \u2014 the full conversation history (messages) is available so it doesn&#8217;t lose context mid-task.<\/li>\n\n\n\n<li>It knows when to stop \u2014 via a defined schema or a max steps limit, preventing runaway loops.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>How do AI agents work?<\/strong><\/p>\n\n\n\n<p>At the core, an agent runs a loop: think \u2192 act \u2192 observe \u2192 repeat. The model receives a goal, decides which tool to use, calls it, reads the result, and then decides what to do next. This continues until the agent reaches a conclusion or hits a stopping condition.<\/p>\n\n\n\n<p>The key inputs to this loop are instructions (the system prompt that defines the agent&#8217;s role), tools (capabilities it can invoke), and messages (the running history of what has happened so far).<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>The Laravel AI SDK \u2014 agents without the boilerplate<\/strong><\/p>\n\n\n\n<p>The<a href=\"https:\/\/laravel.com\/ai\" target=\"_blank\" rel=\"noreferrer noopener\"> Laravel AI SDK<\/a> gives you a fluent, expressive interface for building agents that fits naturally into how Laravel developers already think. Instead of wiring up HTTP clients, managing conversation state, and handling tool dispatch manually, you configure an agent in one place and let the SDK handle the loop.<\/p>\n\n\n\n<p>The four core methods<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>instructions()<\/strong> \u2014 defines the agent&#8217;s personality, role, and constraints. This is your system prompt. Clear instructions mean predictable behavior.<\/li>\n\n\n\n<li><strong>tools()<\/strong> \u2014 registers the capabilities the agent can invoke, from database lookups to external API calls. The model sees their signatures and chooses when to use them.<\/li>\n\n\n\n<li><strong>messages()<\/strong> \u2014 provides the conversation history so the agent retains context across every step of its reasoning loop.<\/li>\n\n\n\n<li><strong>schema()<\/strong> \u2014 defines a structured output format. When you need a predictable JSON shape back from the agent, this ensures the model knows exactly what to return.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Agent2Agent (A2A) for enterprise workflows<\/strong><\/p>\n\n\n\n<p>For complex enterprise systems, the <a href=\"https:\/\/a2a-protocol.org\/latest\/\" target=\"_blank\" rel=\"noreferrer noopener\">Agent2Agent (A2A) protocol<\/a> allows agents to communicate with and delegate to other agents. Rather than one agent handling everything, you compose a network of specialists\u2014a routing agent that delegates to a billing agent, a compliance agent, and a reporting agent, each scoped to what it does best. A2A makes that orchestration standardized and interoperable.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1008\" height=\"752\" src=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/a2a.png\" alt=\"\" class=\"wp-image-1092\" srcset=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/a2a.png 1008w, https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/a2a-300x224.png 300w, https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/a2a-768x573.png 768w\" sizes=\"(max-width: 1008px) 100vw, 1008px\" \/><\/figure>\n\n\n\n<p><strong>AI agents are not a trend \u2014 they are the new baseline<\/strong><\/p>\n\n\n\n<p>A single API call answers a question. An agent gets work done. That distinction matters more as software expectations shift toward systems that can reason, adapt, and act autonomously over many steps.<\/p>\n\n\n\n<p>The Laravel AI SDK removes the hardest parts of that shift. You define what the agent knows, what it can do, and how it should behave \u2014 the SDK handles the rest. Whether you are building a lightweight single-agent feature or a full Agent2Agent enterprise workflow, the same mental model applies.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Ref: <\/p>\n\n\n\n<p><a href=\"https:\/\/laravel.com\/ai\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/laravel.com\/ai<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/a2a-protocol.org\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/a2a-protocol.org<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/cloud.google.com\/discover\/what-are-ai-agents\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/cloud.google.com\/discover\/what-are-ai-agents<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most &#8220;AI integrations&#8221; just call an API and return text. An AI agent is different \u2014 it thinks, decides, and acts across multiple steps without you holding its hand. Here is what that actually means and why Laravel&#8217;s AI SDK turns this from a complex architecture problem into a clean, intuitive workflow. What is an [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1094,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-1090","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>What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - 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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - 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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\" \/>\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=\"2026-04-17T06:00:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-22T07:36:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1025\" \/>\n\t<meta property=\"og:image:height\" content=\"572\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aung Nyi Thit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aung Nyi Thit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\"},\"author\":{\"name\":\"Aung Nyi Thit\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3\"},\"headline\":\"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build\",\"datePublished\":\"2026-04-17T06:00:23+00:00\",\"dateModified\":\"2026-04-22T07:36:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\"},\"wordCount\":652,\"publisher\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png\",\"articleSection\":[\"System\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\",\"url\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\",\"name\":\"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - WIT LAB %\",\"isPartOf\":{\"@id\":\"https:\/\/witlab.ph\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png\",\"datePublished\":\"2026-04-17T06:00:23+00:00\",\"dateModified\":\"2026-04-22T07:36:53+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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage\",\"url\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png\",\"contentUrl\":\"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png\",\"width\":1025,\"height\":572},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/witlab.ph\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build\"}]},{\"@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\/4df708bd91fad188e81ec5addf45b5c3\",\"name\":\"Aung Nyi Thit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g\",\"caption\":\"Aung Nyi Thit\"},\"sameAs\":[\"http:\/\/rapidspice-wp.local\/blog\"],\"url\":\"https:\/\/witlab.ph\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - 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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/","og_locale":"en_US","og_type":"article","og_title":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - 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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/","og_site_name":"WIT LAB","article_publisher":"https:\/\/www.facebook.com\/people\/WIT-LAB\/61567795364273\/","article_published_time":"2026-04-17T06:00:23+00:00","article_modified_time":"2026-04-22T07:36:53+00:00","og_image":[{"width":1025,"height":572,"url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png","type":"image\/png"}],"author":"Aung Nyi Thit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Aung Nyi Thit","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#article","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/"},"author":{"name":"Aung Nyi Thit","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/4df708bd91fad188e81ec5addf45b5c3"},"headline":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build","datePublished":"2026-04-17T06:00:23+00:00","dateModified":"2026-04-22T07:36:53+00:00","mainEntityOfPage":{"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/"},"wordCount":652,"publisher":{"@id":"https:\/\/witlab.ph\/blog\/#organization"},"image":{"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png","articleSection":["System"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/","url":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/","name":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build - WIT LAB %","isPartOf":{"@id":"https:\/\/witlab.ph\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage"},"image":{"@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage"},"thumbnailUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png","datePublished":"2026-04-17T06:00:23+00:00","dateModified":"2026-04-22T07:36:53+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\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#primaryimage","url":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png","contentUrl":"https:\/\/witlab.ph\/blog\/wp-content\/uploads\/2026\/04\/Gemini_Generated_Image_d8euyrd8euyrd8eu-1.png","width":1025,"height":572},{"@type":"BreadcrumbList","@id":"https:\/\/witlab.ph\/blog\/what-is-an-ai-agent-and-why-laravel-makes-them-easy-to-build\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/witlab.ph\/blog\/"},{"@type":"ListItem","position":2,"name":"What Is an AI Agent \u2014 and Why Laravel Makes Them Easy to Build"}]},{"@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\/4df708bd91fad188e81ec5addf45b5c3","name":"Aung Nyi Thit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/witlab.ph\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/56095dd9b0cc972b21cc50c6ae98ce92?s=96&d=mm&r=g","caption":"Aung Nyi Thit"},"sameAs":["http:\/\/rapidspice-wp.local\/blog"],"url":"https:\/\/witlab.ph\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/1090"}],"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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/comments?post=1090"}],"version-history":[{"count":5,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/1090\/revisions"}],"predecessor-version":[{"id":1099,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/posts\/1090\/revisions\/1099"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media\/1094"}],"wp:attachment":[{"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/media?parent=1090"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/categories?post=1090"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/witlab.ph\/blog\/wp-json\/wp\/v2\/tags?post=1090"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}