{"id":17829,"date":"2026-08-13T11:21:43","date_gmt":"2026-08-13T11:21:43","guid":{"rendered":"https:\/\/www.virtuenetz.com\/sa\/?p=17829"},"modified":"2026-08-13T11:21:46","modified_gmt":"2026-08-13T11:21:46","slug":"how-to-become-an-ai-engineer-in-saudi-arabia","status":"publish","type":"post","link":"https:\/\/www.virtuenetz.com\/sa\/blog\/how-to-become-an-ai-engineer-in-saudi-arabia\/","title":{"rendered":"How to Become an AI Engineer in Saudi Arabia"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Search &#8220;how to become an AI engineer&#8221; and you&#8217;ll find two extremes. One camp says you need a PhD and five years of research experience. The other says you can do it in a weekend with a prompt engineering course. Neither is honest. The real path sits in between, and it&#8217;s more achievable than the first camp claims, and more work than the second one admits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is a practical roadmap, the skills that actually matter, the order that makes sense to learn them in, and an honest answer to whether you need a degree at all.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Does an AI Engineer Do?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">An&nbsp;<strong>AI engineer<\/strong>&nbsp;builds systems that use machine learning models to do something useful, not just experiment with them in a notebook. That means taking a model, whether it&#8217;s one you trained or one you&#8217;re calling through an API, and wrapping it in the infrastructure that makes it reliable, fast, and safe to run in a real product. A&nbsp;<strong>machine learning engineer<\/strong>&nbsp;and an AI engineer overlap heavily, but AI engineering today leans more toward working with existing foundation models, building applications on top of&nbsp;<strong>Large Language Models (LLMs)<\/strong>, than training models from scratch.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Day to day, that can mean building a&nbsp;<strong>RAG<\/strong>&nbsp;pipeline so a chatbot answers from a company&#8217;s actual documents, designing an&nbsp;<strong>AI agent<\/strong>&nbsp;that can take multi-step actions instead of just responding to one prompt, or setting up the&nbsp;<strong>MLOps<\/strong>&nbsp;pipeline that keeps a model running reliably after it&#8217;s deployed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">AI Engineer vs Machine Learning Engineer<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">These titles get used almost interchangeably, but there&#8217;s a real difference worth knowing before you pick a learning path.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-left\" data-align=\"left\"><\/th><th class=\"has-text-align-left\" data-align=\"left\">AI Engineer<\/th><th class=\"has-text-align-left\" data-align=\"left\">Machine Learning Engineer<\/th><\/tr><\/thead><tbody><tr><th class=\"has-text-align-left\" data-align=\"left\">Core focus<\/th><td class=\"has-text-align-left\" data-align=\"left\">Building applications on top of existing models, often LLMs<\/td><td class=\"has-text-align-left\" data-align=\"left\">Training and fine-tuning models from data<\/td><\/tr><tr><th class=\"has-text-align-left\" data-align=\"left\">Typical tools<\/th><td class=\"has-text-align-left\" data-align=\"left\">LangChain, vector databases, APIs, RAG<\/td><td class=\"has-text-align-left\" data-align=\"left\">TensorFlow, PyTorch, data pipelines<\/td><\/tr><tr><th class=\"has-text-align-left\" data-align=\"left\">Math depth needed<\/th><td class=\"has-text-align-left\" data-align=\"left\">Moderate, enough to reason about model behavior<\/td><td class=\"has-text-align-left\" data-align=\"left\">Heavier, needed to actually train and tune models<\/td><\/tr><tr><th class=\"has-text-align-left\" data-align=\"left\">Common entry point<\/th><td class=\"has-text-align-left\" data-align=\"left\">Software engineers moving into AI<\/td><td class=\"has-text-align-left\" data-align=\"left\">Data scientists moving into production systems<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Most people starting today are better served learning the&nbsp;<strong>AI engineer<\/strong>&nbsp;path first, it&#8217;s faster to reach something usable, and a lot of the machine learning fundamentals get picked up along the way anyway.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Skills You Actually Need<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Skip the 40-item skill lists you&#8217;ll find elsewhere. Here&#8217;s what actually matters, grouped by how deep you need to go.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Programming (Non-Negotiable)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Python for AI<\/strong>&nbsp;is the standard, not a suggestion. Nearly every AI library, tutorial, and job posting assumes it. Comfort with&nbsp;<strong>Git and GitHub<\/strong>&nbsp;comes right alongside it, since almost every real AI project involves version control and collaborating on code, not working alone in a single script.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Math and Statistics (Enough, Not All of It)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Mathematics for AI<\/strong>&nbsp;and&nbsp;<strong>statistics for AI<\/strong>&nbsp;scare people off more than they should. You don&#8217;t need to derive backpropagation by hand. You need enough linear algebra and probability to understand why a model behaves the way it does, and enough statistics to evaluate whether a result is actually meaningful or just noise.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Core Machine Learning and Deep Learning<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Machine learning<\/strong>&nbsp;fundamentals, how models learn from data, what overfitting actually means, how to evaluate a model, come before&nbsp;<strong>deep learning<\/strong>&nbsp;and&nbsp;<strong>neural networks<\/strong>. Frameworks like&nbsp;<strong>TensorFlow<\/strong>&nbsp;and&nbsp;<strong>PyTorch<\/strong>&nbsp;are how this gets implemented in practice, and most learners settle on one rather than mastering both early on.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Specialized AI Domains<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Pick a lane before going deep.&nbsp;<strong>Natural Language Processing (NLP)<\/strong>&nbsp;covers text and language.<strong>Computer vision<\/strong>&nbsp;covers images and video. Most AI engineers today lean toward NLP first, since it overlaps directly with&nbsp;<strong>generative AI<\/strong>&nbsp;and LLM-based work, which is where most of the current job demand sits.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Modern AI Engineering Tools<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This is the layer that&#8217;s genuinely new over the last two years, and it&#8217;s what separates an AI engineer from someone who only studied classic machine learning.&nbsp;<strong>Prompt engineering<\/strong>, working effectively with LLMs through careful instruction design,&nbsp;<strong>LangChain<\/strong>&nbsp;for building applications around models,&nbsp;<strong>RAG<\/strong>&nbsp;for grounding a model&#8217;s answers in real data,&nbsp;<strong>vector databases<\/strong>&nbsp;for storing and searching that data efficiently, and building actual&nbsp;<strong>AI agents<\/strong>&nbsp;that can plan and execute multi-step tasks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">6. MLOps and Deployment<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A model that only works in a notebook isn&#8217;t a product.&nbsp;<strong>MLOps<\/strong>&nbsp;covers the practical side, deploying a model, monitoring its performance over time, and updating it without breaking whatever depends on it. This is the skill gap that separates people who can build a demo from people who can ship something real.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/images.unsplash.com\/photo-1620712943543-bcc4688e7485?w=1200&amp;h=650&amp;fit=crop\" alt=\"AI engineer working on a machine learning model with code and neural network diagrams on screen\" \/><figcaption class=\"wp-element-caption\">Becoming an AI engineer is less about one certification and more about stacking the right skills in the right order.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">A Realistic Roadmap: Step by Step<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Learn Python properly first.<\/strong>\u00a0Not just syntax, actual comfort writing and debugging real programs. Skipping this step to jump straight to AI libraries is the most common mistake.<\/li>\n\n\n\n<li><strong>Cover the math you actually need.<\/strong>\u00a0A focused linear algebra and statistics refresher, not a full university course, is usually enough to start.<\/li>\n\n\n\n<li><strong>Learn core machine learning concepts.<\/strong>\u00a0How models are trained, evaluated, and where they commonly go wrong.<\/li>\n\n\n\n<li><strong>Pick a specialization and go deeper.<\/strong>\u00a0NLP or computer vision, based on what kind of AI work interests you more.<\/li>\n\n\n\n<li><strong>Learn the modern AI engineering stack.<\/strong>\u00a0LangChain, RAG, vector databases, and how to build with LLMs directly, this is where most current job postings actually live.<\/li>\n\n\n\n<li><strong>Build an AI portfolio, not just tutorials.<\/strong>\u00a0Three real, working projects beat ten half-finished course exercises. A recruiter wants to see something they can actually try.<\/li>\n\n\n\n<li><strong>Learn just enough MLOps to deploy something.<\/strong>\u00a0Get one project actually running somewhere real users could reach it, not just on your own laptop.<\/li>\n\n\n\n<li><strong>Apply for AI internships or junior roles while still learning.<\/strong>\u00a0Real project experience, even small, teaches things no course does.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A realistic timeline:<\/strong>&nbsp;someone with an existing software background can reach a job-ready level in 6 to 12 months of focused, consistent work. Someone starting from zero programming experience is usually looking at 12 to 18 months. Anyone promising a job-ready AI engineer in 6 weeks is selling a course, not describing reality.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">FOR BUSINESSES READING THIS<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Hiring and Training an AI Engineer Takes Months. We Already Have Them.<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re reading this because your business needs AI built, not because you&#8217;re planning a career change, here&#8217;s the shortcut: hiring one AI engineer and getting them productive typically takes 3 to 6 months, and that&#8217;s before they&#8217;ve built anything for you yet. Our team already covers the full stack described above, LLMs, RAG, AI agents, MLOps, and we&#8217;re ready to start on your project now, not after a hiring cycle.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.virtuenetz.com\/sa\/ai-development-services\/\">AI Development Services<\/a><a href=\"https:\/\/www.virtuenetz.com\/sa\/ai-agent-development-services\/\">AI Agent Development<\/a><a href=\"https:\/\/www.virtuenetz.com\/sa\/generative-ai-development-services\/\">Generative AI Development<\/a><a href=\"https:\/\/www.virtuenetz.com\/sa\/machine-learning-development-services\/\">Machine Learning Development<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"\/\/\/Users\/mac\/Downloads\/sa-blog-how-to-become-ai-engineer.html#contact\">Talk to Our AI Team&nbsp;<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Can You Become an AI Engineer Without a Degree?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, realistically. A computer science degree helps, mainly because it forces the math and fundamentals early, but it isn&#8217;t a requirement anymore. What actually gets someone hired without a degree is a working&nbsp;<strong>AI portfolio<\/strong>&nbsp;that proves the skills a degree would otherwise vouch for. Companies hiring AI engineers increasingly care more about what you&#8217;ve built than what&#8217;s on a transcript, especially at&nbsp;<strong>AI developer<\/strong>&nbsp;and application-focused roles rather than research positions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Where a degree still matters more: research-heavy roles, and companies with rigid HR filtering that screens resumes before a human ever sees the portfolio. Outside of those specific cases, the path is genuinely open.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Which Programming Language Is Best for AI Engineering?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Python, without much competition. It has the largest library ecosystem for machine learning and LLM development, the most tutorials and community support, and it&#8217;s what almost every AI framework, from&nbsp;<strong>TensorFlow<\/strong>&nbsp;to&nbsp;<strong>LangChain<\/strong>, is built around. Other languages show up in specific contexts, R in some data science work, C++ where raw performance matters, but for someone starting the path to becoming an AI engineer, the answer isn&#8217;t close.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">AI Engineer Certifications and Courses Worth Considering<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>AI engineer certification<\/strong>&nbsp;programs vary widely in quality, and a certificate alone rarely gets someone hired on its own. What they&#8217;re genuinely useful for is structure, giving a beginner a clear sequence to follow instead of guessing what to learn next. The strongest ones combine structured lessons with real projects you can point to afterward, not just a quiz at the end of a video series.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Treat a course as the map, not the destination. The projects you build during and after it are what actually go in your portfolio.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Does an AI Engineer Earn?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>AI engineer salary<\/strong>&nbsp;varies significantly by region, company size, and specialization, enough that a single global number isn&#8217;t very useful. What&#8217;s consistent across markets: AI engineering roles command a real premium over general software development roles at a comparable experience level, and that gap tends to widen for engineers with hands-on LLM and AI agent experience specifically, since that skill set is newer and still in shorter supply than classic machine learning skills.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Building an AI Portfolio That Actually Gets Noticed<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A portfolio of three tutorial clones does less for you than one original project solving a real problem. A few ideas that consistently stand out:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>A RAG-based application<\/strong>\u00a0answering questions from a specific, real dataset, not a generic demo.<\/li>\n\n\n\n<li><strong>A working AI agent<\/strong>\u00a0that completes a multi-step task, booking, research, data lookup, rather than a single-turn chatbot.<\/li>\n\n\n\n<li><strong>A deployed project<\/strong>, not just code on GitHub. Something a recruiter can actually open and use.<\/li>\n\n\n\n<li><strong>A clear writeup<\/strong>\u00a0explaining the decisions behind the build, what model you chose and why, not just the finished result.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Is AI Engineering a Good Career?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Based on current demand, yes, and the trend line points further in that direction, not away from it. The&nbsp;<strong>future of AI careers<\/strong>&nbsp;looks less like AI replacing engineers and more like AI engineering becoming its own established discipline, the way web development or mobile development did before it. The&nbsp;<strong>AI career opportunities<\/strong>&nbsp;showing the fastest growth right now sit specifically around LLM application development and AI agents, which is exactly the newer skill layer this roadmap weights most heavily.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What a Typical AI Engineer Job Description Looks Like<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Reading real job postings is one of the fastest ways to calibrate what to actually learn, since it tells you what companies are hiring for right now, not what a course was designed to teach two years ago. Most current&nbsp;<strong>AI engineer job description<\/strong>&nbsp;listings mention a similar core set of&nbsp;<strong>AI engineer responsibilities<\/strong>: building and maintaining LLM-powered features, designing retrieval pipelines, integrating AI capabilities into an existing product, and monitoring model performance after launch. The&nbsp;<strong>AI engineer qualifications<\/strong>&nbsp;section usually asks for demonstrated project experience over a specific degree, which lines up with everything covered above about portfolios mattering more than credentials for most roles.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>AI engineer requirements<\/strong>&nbsp;vary more by company stage than by industry. A startup often wants someone comfortable owning a feature end to end, from model selection through deployment. A larger company more often hires into a narrower slice of that pipeline, focused specifically on one part like retrieval systems or model evaluation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common Mistakes People Make on This Path<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A few patterns show up again and again in people who stall out partway through learning AI engineering, worth naming so you can skip them.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Jumping straight to LLMs without the fundamentals.<\/strong>\u00a0Prompt engineering and LangChain are easier to actually use well once you understand what&#8217;s happening underneath them, not before.<\/li>\n\n\n\n<li><strong>Collecting certificates instead of building.<\/strong>\u00a0A stack of finished courses with nothing deployed doesn&#8217;t demonstrate the same thing a working project does, to you or to an employer.<\/li>\n\n\n\n<li><strong>Trying to learn everything at once.<\/strong>\u00a0NLP and computer vision, TensorFlow and PyTorch, classic ML and generative AI, all at the same time. Depth in one area beats shallow coverage of five.<\/li>\n\n\n\n<li><strong>Never deploying anything.<\/strong>\u00a0A model running only in a local notebook doesn&#8217;t teach the deployment and monitoring skills that MLOps actually requires, and that gap shows up fast in interviews.<\/li>\n\n\n\n<li><strong>Ignoring the software engineering basics.<\/strong>\u00a0Version control, code structure, and writing code other people can read matter just as much in AI engineering as in any other engineering discipline, and they&#8217;re often the first thing a real team notices is missing.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">AI Engineer Interview Questions to Expect<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Interviews for AI engineering roles tend to test three things: whether you understand the fundamentals well enough to reason about a model&#8217;s behavior, whether you&#8217;ve actually built something with modern tools like RAG and AI agents rather than only studying them, and whether you can explain your own project decisions clearly. Expect questions on how you&#8217;d design a retrieval pipeline for a specific use case, how you&#8217;d evaluate whether a model is actually performing well, and a walkthrough of a project already in your portfolio, which is exactly why having a real, deployed project to talk through matters more than another certificate.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What does an AI engineer do?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An AI engineer builds and deploys systems that use machine learning models, often including LLMs, RAG pipelines, and AI agents, to solve real business problems, not just experiment with models in isolation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What skills do you need to become an AI engineer?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Python programming, foundational math and statistics, core machine learning concepts, a specialization like NLP or computer vision, and modern tools including LangChain, RAG, and vector databases.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How long does it take to become an AI engineer?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Roughly 6 to 12 months for someone with an existing programming background, and 12 to 18 months starting from zero, assuming consistent, focused effort rather than occasional study.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I become an AI engineer without a degree?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, for most application-focused AI engineering roles. A strong portfolio of real, working projects matters more to most employers than a formal degree, outside of research-heavy positions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Which programming language is best for AI engineering?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Python, by a wide margin. It has the largest ecosystem of AI libraries and frameworks, and nearly every modern AI tool is built around it first.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Is AI engineering a good career?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, current demand and salary trends both point that direction, particularly for engineers with hands-on experience in LLMs and AI agents, which remains a shorter-supply skill set than classic machine learning.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">AI engineer vs machine learning engineer, what&#8217;s the difference?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An AI engineer typically builds applications on top of existing models, often LLMs, using tools like LangChain and RAG. A machine learning engineer more often trains and fine-tunes models directly from data. The skill sets overlap heavily but aren&#8217;t identical.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I start a career in AI engineering?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Start with Python and core machine learning fundamentals, then move into modern AI tools like LangChain and RAG, and build real, deployed projects rather than only completing course exercises.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>VirtueNetz AI Team<\/strong>Software and AI development company serving businesses across Saudi Arabia<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need AI Built for Your Business, Not a Career Guide?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Skip the hiring cycle. Tell us what you&#8217;re building, and our AI engineers can start scoping it this week.<a href=\"https:\/\/www.virtuenetz.com\/sa\/ai-development-services\/\">Talk to Our AI Team<\/a>\u00a9 2026 VirtueNetz Saudi Arabia.&nbsp;<a href=\"https:\/\/www.virtuenetz.com\/sa\/\">virtuenetz.com\/sa<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Search &#8220;how to become an AI engineer&#8221; and you&#8217;ll find two extremes. One camp says you need a PhD and five years of research experience.&hellip;<\/p>\n","protected":false},"author":12,"featured_media":17830,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-17829","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/posts\/17829","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/comments?post=17829"}],"version-history":[{"count":1,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/posts\/17829\/revisions"}],"predecessor-version":[{"id":17831,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/posts\/17829\/revisions\/17831"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/media\/17830"}],"wp:attachment":[{"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/media?parent=17829"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/categories?post=17829"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.virtuenetz.com\/sa\/wp-json\/wp\/v2\/tags?post=17829"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}