{"id":19110,"date":"2024-06-11T06:50:03","date_gmt":"2024-06-11T06:50:03","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=19110"},"modified":"2024-06-11T06:50:03","modified_gmt":"2024-06-11T06:50:03","slug":"what-is-an-api-gateway","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/","title":{"rendered":"What is an API Gateway?"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\" alt=\"\" \/><\/p>\n<p>In the realm of microservices and distributed systems, API gateways have emerged as a crucial component for managing and securing APIs. An API gateway acts as a single entry point for multiple microservices, simplifying client interactions and providing a range of functionalities like request routing, composition, and protocol translation. This article explores the concept of an API gateway, its architecture, benefits, challenges, and best practices in modern software development.<\/p>\n<h2>What is an API Gateway?<\/h2>\n<p>An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice. It functions as a reverse proxy, managing API requests, enforcing security policies, and aggregating responses from multiple services.<\/p>\n<h3>Key Functions of API Gateway<\/h3>\n<p>Below are some of the Key Functions of API Gateway:<\/p>\n<ul>\n<li><strong>Request Routing:<\/strong> Directs client requests to the appropriate backend service based on the URL path, request parameters, or other criteria.<\/li>\n<li><strong>Load Balancing:<\/strong> Distributes incoming traffic across multiple instances of a service to ensure high availability and reliability.<\/li>\n<li><strong>Security:<\/strong> Enforces security policies, such as authentication, authorization, and rate limiting, to protect backend services.<\/li>\n<li><strong>API Composition:<\/strong> Aggregates responses from multiple microservices into a single response, reducing the number of client calls.<\/li>\n<li><strong>Protocol Translation:<\/strong> Converts protocols between clients and microservices, such as translating RESTful calls to gRPC.<\/li>\n<\/ul>\n<h3>Architecture of an API Gateway<\/h3>\n<p><strong>Basic Architecture<\/strong><br \/>\nAn API gateway typically includes the following components:<\/p>\n<ul>\n<li><strong>Gateway Server:<\/strong> The main server that handles incoming requests and routes them to the appropriate backend services.<\/li>\n<li><strong>Routing Rules:<\/strong> Configuration that determines how requests are mapped to backend services based on URL paths, query parameters, headers, etc.<\/li>\n<li><strong>Security Module:<\/strong> Implements authentication, authorization, and other security policies.<\/li>\n<li><strong>Transformation Engine:<\/strong> Handles data transformation, such as converting between different data formats or aggregating responses.<\/li>\n<li><strong>Monitoring and Logging:<\/strong> Tracks request metrics, logs traffic data, and provides analytics for monitoring and debugging purposes.<\/li>\n<\/ul>\n<p><strong>Deployment Models<\/strong><\/p>\n<ul>\n<li><strong>Centralized Deployment:<\/strong> The API gateway is deployed as a single instance or a cluster, managing all requests for the microservices.<\/li>\n<li><strong>Decentralized Deployment:<\/strong> Each service may have its own lightweight gateway, reducing the single point of failure and distributing the load.<\/li>\n<\/ul>\n<h3>Benefits of Using an API Gateway<\/h3>\n<p>Benefits of Using an API Gateway are:<\/p>\n<p><strong>1. Simplified Client Interactions<\/strong><br \/>\nClients interact with a single endpoint, the API gateway, rather than dealing with multiple services. This reduces complexity and provides a unified interface for all client requests.<\/p>\n<p><strong>2. Enhanced Security<\/strong><br \/>\nThe API gateway enforces security policies centrally, ensuring consistent authentication and authorization across all services. It can also implement rate limiting, IP whitelisting, and other security measures.<\/p>\n<p><strong>3. Improved Performance and Scalability<\/strong><br \/>\nAPI gateways can perform load balancing, distributing incoming traffic across multiple instances of a service. This ensures high availability and optimizes resource utilization.<\/p>\n<p><strong>4. API Composition and Aggregation<\/strong><br \/>\nThe gateway can aggregate responses from multiple services, reducing the number of calls a client needs to make. This is particularly useful in scenarios where a single request needs data from multiple sources.<\/p>\n<p><strong>5. Protocol Translation<\/strong><br \/>\nAPI gateways can handle protocol translation, allowing clients to interact with services using different communication protocols. For example, the gateway can convert RESTful API calls to gRPC calls for backend services.<\/p>\n<p><strong>6. Centralized Logging and Monitoring<\/strong><br \/>\nWith an API gateway, all traffic passes through a central point, making it easier to collect metrics, monitor performance, and log request data for analysis and debugging.<\/p>\n<h3>Challenges of Using an API Gateway<\/h3>\n<p>Challenges of Using an API Gateway are given below:<\/p>\n<p><strong>1. Single Point of Failure<\/strong><br \/>\nIf the API gateway goes down, all services become inaccessible. Implementing high availability and failover mechanisms is essential to mitigate this risk.<\/p>\n<p><strong>2. Latency<\/strong><br \/>\nIntroducing an API gateway adds an additional hop in the request path, which can increase latency. Optimizing the gateway\u2019s performance and minimizing processing time is crucial.<\/p>\n<p><strong>3. Complexity<\/strong><br \/>\nConfiguring and managing an API gateway can be complex, especially in large-scale systems with numerous microservices. It requires careful planning and ongoing maintenance.<\/p>\n<p><strong>4. Overhead<\/strong><br \/>\nThe gateway can become a bottleneck if not properly scaled, impacting the performance of the entire system. Efficient resource management and load balancing are necessary to handle high traffic volumes.<\/p>\n<p><strong>5. Dependency Management<\/strong><br \/>\nThe gateway introduces a new layer of dependency. Any changes to the API gateway configuration or deployment need to be carefully coordinated with the microservices it manages.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nAn API gateway is a vital component in modern microservices architecture, providing a single entry point for client interactions, enhancing security, improving performance, and simplifying client interactions. While it introduces some challenges, such as potential single points of failure and added complexity, these can be mitigated with careful planning, robust design, and adherence to best practices.<br \/>\nAs businesses increasingly adopt microservices and distributed systems, the role of API gateways will continue to grow, providing the necessary tools to manage and secure APIs effectively. By understanding the benefits, challenges, and best practices associated with API gateways, organizations can leverage them to build scalable, secure, and high-performance systems that meet the demands of today&#8217;s digital landscape.<\/p>\n<h2>Frequently Asked Questions (FAQs) about API Gateway<\/h2>\n<p>Below are some of the FAQs related to API Gateway:<\/p>\n<p><strong>1. Why do we need an API Gateway?<\/strong><br \/>\nAn API gateway simplifies client interactions by providing a unified interface for multiple services. It enhances security, improves performance through load balancing, enables API composition, and provides centralized logging and monitoring.<\/p>\n<p><strong>2. How does an API Gateway work?<\/strong><br \/>\nThe API gateway receives client requests and routes them to the appropriate backend services based on routing rules. It can also handle tasks like data transformation, protocol translation, and aggregating responses from multiple services into a single response.<\/p>\n<p><strong>3. What are the main benefits of using an API Gateway?<\/strong><br \/>\nBenefits include simplified client interactions, enhanced security, improved performance and scalability, API composition and aggregation, protocol translation, and centralized logging and monitoring.<\/p>\n<p><strong>4. What are the common challenges with API Gateways?<\/strong><br \/>\nChallenges include potential single points of failure, added latency, increased complexity, potential performance bottlenecks, and the need for robust dependency management and maintenance.<\/p>\n<p><strong>5. How does an API Gateway handle security?<\/strong><br \/>\nAn API gateway enforces security policies such as authentication, authorization, and rate limiting. It can also use TLS encryption to secure data in transit and protect against unauthorized access.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the realm of microservices and distributed systems, API gateways have emerged as a crucial component for managing and securing APIs. An API gateway acts as a single entry point for multiple microservices, simplifying client interactions and providing a range of functionalities like request routing, composition, and protocol translation. This article explores the concept of [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[211],"tags":[],"class_list":["post-19110","post","type-post","status-publish","format-standard","hentry","category-system-design"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is an API Gateway?<\/title>\n<meta name=\"description\" content=\"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is an API Gateway?\" \/>\n<meta property=\"og:description\" content=\"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-11T06:50:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"What is an API Gateway?\",\"datePublished\":\"2024-06-11T06:50:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\"},\"wordCount\":1023,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\",\"articleSection\":[\"System Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\",\"name\":\"What is an API Gateway?\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\",\"datePublished\":\"2024-06-11T06:50:03+00:00\",\"description\":\"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"System Design\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/system-design\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is an API Gateway?\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is an API Gateway?","description":"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.","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:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/","og_locale":"en_US","og_type":"article","og_title":"What is an API Gateway?","og_description":"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.","og_url":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2024-06-11T06:50:03+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"What is an API Gateway?","datePublished":"2024-06-11T06:50:03+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/"},"wordCount":1023,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png","articleSection":["System Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/","url":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/","name":"What is an API Gateway?","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png","datePublished":"2024-06-11T06:50:03+00:00","description":"An API gateway is a server that sits between clients and microservices, handling all the requests from clients and routing them to the appropriate microservice.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1718088571065-What%20is%20API%20Gateway.png"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/what-is-an-api-gateway\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"System Design","item":"https:\/\/prepbytes.com\/blog\/category\/system-design\/"},{"@type":"ListItem","position":3,"name":"What is an API Gateway?"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=19110"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19110\/revisions"}],"predecessor-version":[{"id":19111,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19110\/revisions\/19111"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=19110"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=19110"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=19110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}