{"id":5196,"date":"2020-12-06T10:58:24","date_gmt":"2020-12-06T10:58:24","guid":{"rendered":"https:\/\/letket.com\/?p=5196"},"modified":"2020-12-06T10:58:24","modified_gmt":"2020-12-06T10:58:24","slug":"everything-about-api-application-programming-interface","status":"publish","type":"post","link":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/","title":{"rendered":"Everything About API (Application Programming Interface)"},"content":{"rendered":"\n<p class=\"has-text-align-justify\">You\u2019ve probably seen the term \u201cAPI\u201d come up. Operating system, web browser, and app updates often announce new APIs for developers. But what is an API?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Application Programming Interface<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">The term API is an acronym, and it stands for \u201cApplication Programming Interface.\u201d<\/p>\n\n\n\n<p class=\"has-text-align-justify\">Think of an API like a menu in a restaurant. The menu provides a list of dishes you can order, along with a description of each dish. When you specify what menu items you want, the restaurant\u2019s kitchen does the work and provides you with some finished dishes. You don\u2019t know exactly how the restaurant prepares that food, and you don\u2019t really need to.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">Similarly, an API lists a bunch of operations that developers can use, along with a description of what they do. The developer doesn\u2019t necessarily need to know how, for example, an operating system builds and presents a \u201cSave As\u201d dialog box. They just need to know that it\u2019s available for use in their app.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">This isn\u2019t a perfect metaphor. Developers will have to provide their own data to the API to get the results. It\u2019s more like a fancy restaurant where you can provide some of your own ingredients the kitchen will work with.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">But it\u2019s broadly accurate. APIs allow developers to save time by taking advantage of a platform\u2019s implementation to do the nitty-gritty work. This helps reduce the amount of code developers need to create. It also helps create more consistency across apps for the same platform. APIs can control access to hardware and software resources.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An API Provides a Layer of Security<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment-1024x1024.png\" alt=\"\" class=\"wp-image-5200\" width=\"492\" height=\"492\" srcset=\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment-1024x1024.png 1024w, https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment-300x300.png 300w, https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment-150x150.png 150w, https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment-768x767.png 768w, https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-security-assessment.png 1251w\" sizes=\"auto, (max-width: 492px) 100vw, 492px\" \/><\/figure><\/div>\n\n\n\n<p class=\"has-text-align-justify\">Your phone\u2019s data is never fully exposed to the server. Likewise the server is never fully exposed to your phone. Instead, each communicates with small packets of data, sharing only that which is necessary\u2014like ordering takeout. You tell the restaurant what you would like to eat. The restaurant tells you what they need in return and then, in the end, you get your meal.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">APIs have become so <a href=\"https:\/\/www.mulesoft.com\/lp\/whitepaper\/api\/rising-value-apis\" target=\"_blank\" rel=\"noreferrer noopener\">valuable<\/a> that they comprise a large part of many business\u2019 revenue. Major companies like Google, eBay, Salesforce.com, Amazon, and Expedia are just a few of the companies that make money from their APIs. What the \u201c<a href=\"https:\/\/www.mulesoft.com\/webinars\/api\/welcome-api-economy\" target=\"_blank\" rel=\"noreferrer noopener\">API economy<\/a>\u201d refers to is this marketplace of APIs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Modern API<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">Over the years, what an \u201cAPI\u201d is has often described any sort of generic connectivity interface to an application. More recently, however, the modern API has taken on some characteristics that make them extraordinarily valuable and useful:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Modern APIs adhere to standards (typically HTTP and REST), that are developer-friendly, easily accessible and understood broadly<\/li><li>They are treated more like products than code. They are designed for consumption for specific audiences (e.g., mobile developers), they are documented, and they are versioned in a way that users can have certain expectations of its maintenance and lifecycle.<\/li><li>Because they are much more standardized, they have a much stronger discipline for security and governance, as well as monitored and managed for performance and scale<\/li><li>The modern API has its own software development lifecycle (SDLC) of designing, testing, building, managing, and versioning. \u00a0Also, modern APIs are well documented for consumption and versioning.<\/li><\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">APIs Make Life Easier for Developers<\/h2>\n\n\n\n<p class=\"has-text-align-justify\">Let\u2019s say you want to develop an app for an iPhone. Apple\u2019s iOS operating system provides a large number of <a href=\"https:\/\/developer.apple.com\/api-changes\/\">APIs<\/a>\u2014as every other operating system does\u2014to make this easier on you.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">If you want to embed a web browser to show one or more web pages, you don\u2019t have to program your own web browser  just for your application. You use the <a href=\"https:\/\/developer.apple.com\/documentation\/webkit\/wkwebview\">WKWebView<\/a> API to embed a WebKit (Safari) browser object in your application.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">If you want to capture photos or video from the iPhone\u2019s camera, you don\u2019t have to write your own camera interface. You use the camera API to embed the iPhone\u2019s built-in camera in your app. Without APIs, app developers would have to create their own camera software and interpret the camera hardware\u2019s inputs. But Apple\u2019s operating system developers have done all this hard work so the developers can just use the camera API to embed a camera, and then get on with building their app. And, when Apple improves the camera API, all the apps that rely on it will take advantage of that improvement automatically.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">This applies to every platform. For example, do you want to create a dialog box on Windows? <a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/ff818516(v=vs.85).aspx\">There\u2019s an API for that<\/a>. Want to support fingerprint authentication on Android? <a href=\"https:\/\/developer.android.com\/about\/versions\/marshmallow\/android-6.0.html#fingerprint-authentication\">There\u2019s an API for that<\/a>, too, so you don\u2019t have to test every different Android manufacturer\u2019s fingerprint sensor. Developers don\u2019t have to reinvent the wheel over and over.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">APIs Are Used For Communication Between Services<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"510\" height=\"493\" src=\"https:\/\/letket.com\/wp-content\/uploads\/2020\/12\/api-entegrasyon-content.png\" alt=\"\" class=\"wp-image-5198\" srcset=\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-entegrasyon-content.png 510w, https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/api-entegrasyon-content-300x290.png 300w\" sizes=\"auto, (max-width: 510px) 100vw, 510px\" \/><\/figure><\/div>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-text-align-justify\">APIs are used for all kinds of other reasons, too. For example, if you\u2019ve ever seen a Google Maps object embedded on a website, that website is using the Google Maps API to embed that map. Google exposes APIs like this to web developers, who can then use the APIs to plop complex objects right on their website. If APIs like this didn\u2019t exist, developers might have to create their own maps and provide their own map data just to put a little interactive map on a website.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">And, because it\u2019s an API, Google can control access to Google Maps on third-party websites, ensuring they use it in a consistent way rather than attempting to messily embed a frame that shows the Google Maps website, for example.<\/p>\n\n\n\n<p class=\"has-text-align-justify\">This applies to many different online services. There are APIs for requesting text translation from Google Translate, or embedding Facebook comments or tweets from Twitter on a website.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>If you\u2019ve gotten through this, you\u2019ll have a better idea of what an API is. Ultimately, you don\u2019t really need to know what an API is unless you\u2019re a developer. But, if you see a software platform or service has added new APIs for various hardware or services, it should be easier for developers to take advantage of such features.<\/p>\n\n\n\n<p>In need to provide you some tech services? Check our website&nbsp;<a href=\"https:\/\/letket.com\/\">here&nbsp;<\/a>and don\u2019t hesitate to&nbsp;<a href=\"https:\/\/letket.com\/contact-us\/\">contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You\u2019ve probably seen the term \u201cAPI\u201d come up. Operating system, web browser, and app updates often announce new APIs for developers. But what is an API? Application Programming Interface The term API is an acronym, and it stands for \u201cApplication Programming Interface.\u201d Think of an API like a menu in a restaurant. The menu provides [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5197,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-5196","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Everything About API (Application Programming Interface) - letket<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Everything About API (Application Programming Interface) - letket\" \/>\n<meta property=\"og:description\" content=\"You\u2019ve probably seen the term \u201cAPI\u201d come up. Operating system, web browser, and app updates often announce new APIs for developers. But what is an API? Application Programming Interface The term API is an acronym, and it stands for \u201cApplication Programming Interface.\u201d Think of an API like a menu in a restaurant. The menu provides [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\" \/>\n<meta property=\"og:site_name\" content=\"letket\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-06T10:58:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"321\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Omar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Omar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\"},\"author\":{\"name\":\"Omar\",\"@id\":\"https:\/\/staging.letket.com\/#\/schema\/person\/ea497118336ec821ad0a265eeccf5e42\"},\"headline\":\"Everything About API (Application Programming Interface)\",\"datePublished\":\"2020-12-06T10:58:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\"},\"wordCount\":1052,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/staging.letket.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png\",\"articleSection\":[\"Tech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\",\"url\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\",\"name\":\"Everything About API (Application Programming Interface) - letket\",\"isPartOf\":{\"@id\":\"https:\/\/staging.letket.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png\",\"datePublished\":\"2020-12-06T10:58:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage\",\"url\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png\",\"contentUrl\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png\",\"width\":800,\"height\":321},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/staging.letket.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Everything About API (Application Programming Interface)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.letket.com\/#website\",\"url\":\"https:\/\/staging.letket.com\/\",\"name\":\"letket\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/staging.letket.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.letket.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/staging.letket.com\/#organization\",\"name\":\"letket\",\"url\":\"https:\/\/staging.letket.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.letket.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2025\/02\/logo-letket.png\",\"contentUrl\":\"https:\/\/staging.letket.com\/wp-content\/uploads\/2025\/02\/logo-letket.png\",\"width\":1440,\"height\":1024,\"caption\":\"letket\"},\"image\":{\"@id\":\"https:\/\/staging.letket.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/staging.letket.com\/#\/schema\/person\/ea497118336ec821ad0a265eeccf5e42\",\"name\":\"Omar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.letket.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8f8354315d6f8937ec81e0b76dfd67ca33edf18856077937251f943f71b61d31?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8f8354315d6f8937ec81e0b76dfd67ca33edf18856077937251f943f71b61d31?s=96&d=mm&r=g\",\"caption\":\"Omar\"},\"sameAs\":[\"https:\/\/staging.letket.com\"],\"url\":\"https:\/\/staging.letket.com\/author\/omar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Everything About API (Application Programming Interface) - letket","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Everything About API (Application Programming Interface) - letket","og_description":"You\u2019ve probably seen the term \u201cAPI\u201d come up. Operating system, web browser, and app updates often announce new APIs for developers. But what is an API? Application Programming Interface The term API is an acronym, and it stands for \u201cApplication Programming Interface.\u201d Think of an API like a menu in a restaurant. The menu provides [&hellip;]","og_url":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/","og_site_name":"letket","article_published_time":"2020-12-06T10:58:24+00:00","og_image":[{"width":800,"height":321,"url":"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png","type":"image\/png"}],"author":"Omar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Omar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#article","isPartOf":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/"},"author":{"name":"Omar","@id":"https:\/\/staging.letket.com\/#\/schema\/person\/ea497118336ec821ad0a265eeccf5e42"},"headline":"Everything About API (Application Programming Interface)","datePublished":"2020-12-06T10:58:24+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/"},"wordCount":1052,"commentCount":1,"publisher":{"@id":"https:\/\/staging.letket.com\/#organization"},"image":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png","articleSection":["Tech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/","url":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/","name":"Everything About API (Application Programming Interface) - letket","isPartOf":{"@id":"https:\/\/staging.letket.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage"},"image":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png","datePublished":"2020-12-06T10:58:24+00:00","breadcrumb":{"@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#primaryimage","url":"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png","contentUrl":"https:\/\/staging.letket.com\/wp-content\/uploads\/2020\/12\/1-F8R-PEI9iVJ-sY3qFZemCg.png","width":800,"height":321},{"@type":"BreadcrumbList","@id":"https:\/\/staging.letket.com\/everything-about-api-application-programming-interface\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.letket.com\/"},{"@type":"ListItem","position":2,"name":"Everything About API (Application Programming Interface)"}]},{"@type":"WebSite","@id":"https:\/\/staging.letket.com\/#website","url":"https:\/\/staging.letket.com\/","name":"letket","description":"","publisher":{"@id":"https:\/\/staging.letket.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.letket.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/staging.letket.com\/#organization","name":"letket","url":"https:\/\/staging.letket.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.letket.com\/#\/schema\/logo\/image\/","url":"https:\/\/staging.letket.com\/wp-content\/uploads\/2025\/02\/logo-letket.png","contentUrl":"https:\/\/staging.letket.com\/wp-content\/uploads\/2025\/02\/logo-letket.png","width":1440,"height":1024,"caption":"letket"},"image":{"@id":"https:\/\/staging.letket.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/staging.letket.com\/#\/schema\/person\/ea497118336ec821ad0a265eeccf5e42","name":"Omar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.letket.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8f8354315d6f8937ec81e0b76dfd67ca33edf18856077937251f943f71b61d31?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8f8354315d6f8937ec81e0b76dfd67ca33edf18856077937251f943f71b61d31?s=96&d=mm&r=g","caption":"Omar"},"sameAs":["https:\/\/staging.letket.com"],"url":"https:\/\/staging.letket.com\/author\/omar\/"}]}},"_links":{"self":[{"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/posts\/5196","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/comments?post=5196"}],"version-history":[{"count":0,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/posts\/5196\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/media\/5197"}],"wp:attachment":[{"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/media?parent=5196"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/categories?post=5196"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.letket.com\/letket-api\/wp\/v2\/tags?post=5196"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}