{"id":77455,"date":"2022-07-20T07:36:20","date_gmt":"2022-07-20T11:36:20","guid":{"rendered":"https:\/\/staging.checkmarx.com\/?p=77455"},"modified":"2025-08-11T14:39:51","modified_gmt":"2025-08-11T12:39:51","slug":"what-is-your-api-attack-surface","status":"publish","type":"post","link":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/","title":{"rendered":"What Is Your API Attack Surface?"},"content":{"rendered":"<p>The proliferation of APIs today is astonishing. According to a recent <a href=\"https:\/\/www.f5.com\/pdf\/reports\/f5-office-of-the-cto-report-continuous-api-sprawl.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">report<\/a>, the number of active APIs will approach 1.7 billion by 2030. You might expect that the majority of those APIs would be resistant to attacks or vulnerabilities; however, that is not necessarily the case. In fact, a major study from RapidAPI on the <a href=\"https:\/\/rapidapi.com\/report\/state-of-enterprise-apis\/?utm_source=p\" target=\"_blank\" rel=\"noreferrer noopener\">state of enterprise APIs<\/a> revealed a rather distressing lack of consistent policy enforcement and visibility across all APIs. Many of those APIs might expose parts that are undocumented, which is a great concern among security teams.<\/p>\n\n\n<p>This article explores the fundamental reasons why an API can become insecure and discusses ways to reduce the attack surface.<\/p>\n\n\n<h2 class=\"wp-block-heading article-anchor\" id=\"article-anchor-1\">\n<a><\/a>How Do Documentation Tools Like Swagger Fall Short?<\/h2>\n\n\n<p>Documenting APIs comes with inherent difficulties. The main problem areas include ambiguity of exposed functionality, incomplete or undocumented content, and incorrect responses. Development teams rely on tools like Swagger to help them document their APIs and use automation to mitigate some of those issues.<\/p>\n\n\n<p>Swagger is not a panacea, however, and using Swagger\/OpenAPI for API development does not protect you against all vulnerabilities. Recent <a href=\"https:\/\/www.cybersprint.com\/blog\/swagger-api-discovery-of-api-data-and-security-flaws\" target=\"_blank\" rel=\"noreferrer noopener\">research conducted by Soufian El Yadmani of Cybersprint<\/a> found many flaws in this technology, including many vulnerabilities listed in the OWASP API Top 10.<\/p>\n\n\n<p>For example, issues can happen when a web framework is integrated with Swagger. Developers using the <a href=\"https:\/\/fastapi.tiangolo.com\/features\/#based-on-open-standards\" target=\"_blank\" rel=\"noreferrer noopener\">FastAPI framework<\/a> can receive automatically generated Swagger UI fields from the code without declaring the API specification. This works fine on paper, but it might not work with your particular business requirements. The CRUD model might return a different result based on certain circumstances, for instance, or use a different way of calculating the end result that deviates from a typical case. The framework might be unable to introspect the correct result and rely instead on manual intervention. In this case, developers will have to completely own the dependencies and generated documentation to ensure that they match the expected outcome.<\/p>\n\n\n<p>In addition, Swagger generates complex code that has little opportunity for customization, which makes it inconvenient to use. For example, if hypermedia links are missing from the response, developers might try to intervene by writing custom queries that deviate from the spec, thereby increasing the risk of producing undocumented responses.<\/p>\n\n\n<p>Overall, the hardest part is establishing proper workflows for working with Swagger in the optimal way \u2013 writing specs in YAML, implementing the specs, and writing unit tests that conform with those specs. The API maintainer\u2019s job is to make sure that they don\u2019t deviate from the supported features and that they keep the spec as an authoritative source of truth.<\/p>\n\n\n<h2 class=\"wp-block-heading article-anchor\" id=\"article-anchor-2\">\n<a><\/a>Why It\u2019s Hard to Keep Track Of APIs<\/h2>\n\n\n<p>There are many reasons why APIs are hard to keep track of, and therefore hard to support at scale, but they all relate to technical debt. Working on many products as part of a broader ecosystem is a very typical scenario. Some parts of the system might be unknown due to a change in business priorities and focus, when some API services were neglected and forgotten \u2013 until they failed to work. This is an example of code ownership debt.<\/p>\n\n\n<p>Another type of technical debt is people debt. This happens when you allow developers to work on critical API systems for a long time and then they decide to resign from the company. The domain experience that these people acquired when building those systems may be lost to future maintainers unless there is a good handover process. Having many API services and no one who understands how they work significantly contributes to the initial problem.<\/p>\n\n\n<p>The issue becomes even bigger when you introduce architectural debt by implementing APIs using microservices. Let\u2019s explain.<\/p>\n\n\n<h2 class=\"wp-block-heading article-anchor\" id=\"article-anchor-3\">\n<a><\/a>How Microservices Architectures Lead to API Communication Flows<\/h2>\n\n\n<p>APIs and microservices are directly related. As you develop applications using microservices, you create highly decoupled services that enclose their own domain and communicate with each other using APIs. For example, a user microservice needs to communicate with the auth microservice to authenticate the user before responding to a request to view that user\u2019s profile. This communication dictates the use of an API contract between each microservice. In addition, API gateways can be used to aggregate multiple APIs under a single namespace, which helps maintain observability and centralized monitoring at a fundamental level.<\/p>\n\n\n<p>More real-world domains may need many microservices. In practice, that means having a separate API layer behind each microservice \u2013 and each one has its own attack surface. It\u2019s not unusual to have hundreds of microservices that each expose OpenAPI interfaces. This leads to what is known as API sprawl. In this case, the sheer number of services makes things harder to maintain. It\u2019s very common for businesses to use APIs without tracking when or where they are used, which makes it harder to keep track of their security risks.<\/p>\n\n\n<h2 class=\"wp-block-heading article-anchor\" id=\"article-anchor-4\">\n<a><\/a>Not Knowing All Your APIs Leads to Catastrophe<\/h2>\n\n\n<p>It is a well-known fact that you cannot secure something when you don\u2019t know it exists. But achieving continuous runtime visibility into all APIs is not trivial. It requires that you understand the exposed parts of the API in depth and that you document the obscure sections, run static code analyzers, and subject the application to security testing. This is mandatory, since the failure to record and secure these parts is very dangerous.<\/p>\n\n\n<p>APIs are already extremely susceptible to many kinds of attacks. Undoubtedly, there is no limit to what attackers can use when it comes to stealing sensitive data for malicious purposes. Here are some examples of attacks that you may encounter:<\/p>\n\n\n<ul class=\"wp-block-list\">\n<li>\n<strong>DDoS<\/strong>: Attackers can target unknown parts of your APIs to do the maximum damage. They can overload the system with terabytes of bandwidth if they\u2019re successful, and you won\u2019t know what hit you. It\u2019s therefore important to safeguard against DDoS attacks on each exposed part of your APIs.<\/li>\n<li>\n<strong>Innocuous access:<\/strong> Hidden or undocumented parts of your API can be easier to exploit. By using unknown endpoints, for example, attackers can dig in quickly and gain unauthorized access without someone detecting anything suspicious. Unless the traffic from those endpoints is more consistent, it will be harder for the security teams to recognise the danger.<\/li>\n<li>\n<strong>Injection<\/strong>: API endpoints that are vulnerable to injection attacks (SQL, XSS, and so on) can help attackers expose sensitive data, leak credentials, and gain insights into how to attack the infrastructure. If the API under attack is unknown or undocumented, you will lose valuable time trying to figure out how to safeguard it.<\/li>\n<\/ul>\n\n\n<p>Take extra care when you develop and expose APIs \u2013 especially the ones that are used for public access. These can be used as target practice for all sorts of attacks. Conducting a solid security assessment of your APIs will position you one step ahead of any future attacks.<\/p>\n\n\n<h2 class=\"wp-block-heading article-anchor\" id=\"article-anchor-5\">\n<a><\/a>Conclusion<\/h2>\n\n\n<p>Just because you use Swagger, follow the best practices for documentation, and lead by example does not mean that your APIs are secure by default. It literally takes a village to achieve a superior level of security \u2013 mainly because of the inherent difficulty of covering the attack surface of your APIs. This is why you need to establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.<\/p>\n\n\n<figure><img decoding=\"async\" src=\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/Picture1-3-1.png\" alt=\"\"><\/figure>\n\n\n<p>About the Author<\/p>\n\n\n<p><\/p>\n\n\n<p><strong>Theo Despoudis<\/strong> is a Senior Software Engineer, a consultant and an experienced mentor. He has a keen interest in Open-Source Software Architectures, Cloud Computing, best practices and functional programming. He occasionally blogs on several publishing platforms and enjoys creating projects from inspiration. Follow him on Twitter @nerdokto.<\/p>\n\n\n<p>..<\/p>\n\n\n<p>..<\/p>\n\n\n<hr>\n\n\n<p>To learn more about the many risks (including APIs) in modern application development, download this <a href=\"https:\/\/info.checkmarx.com\/ebook\/many-risks-of-modern-application-development\" target=\"_blank\" rel=\"noreferrer noopener\">e-book<\/a> today.   <\/p>\n<p>Or if you would like to learn more about Checkmarx approach to API security within the <a href=\"https:\/\/checkmarx.com\/product\/application-security-platform\/\" target=\"_blank\" rel=\"noreferrer noopener\">Checkmarx One\u2122 Application Security Platform<\/a>, this <a href=\"https:\/\/info.checkmarx.com\/checkmarx-approach-to-api-security\" target=\"_blank\" rel=\"noreferrer noopener\">white paper<\/a> explains it all.<\/p>","protected":false},"excerpt":{"rendered":"<p>The proliferation of APIs today is astonishing. According to a recent report, the number of active APIs will approach 1.7 billion by 2030. You might expect that the majority of those APIs would be resistant to attacks or vulnerabilities; however, that is not necessarily the case. In fact, a major study from RapidAPI on the [&hellip;]<\/p>\n","protected":false},"author":15,"featured_media":79357,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[84],"tags":[218,87,189,395,406,397,190,403],"class_list":["post-77455","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-api-security","tag-appsec","tag-article","tag-awareness","tag-checkmarx-application-security-platform","tag-developer","tag-english","tag-leadership"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What Is Your API Attack Surface? - Checkmarx.com<\/title>\n<meta name=\"description\" content=\"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is Your API Attack Surface?\" \/>\n<meta property=\"og:description\" content=\"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\" \/>\n<meta property=\"og:site_name\" content=\"Checkmarx\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Checkmarx.Source.Code.Analysis\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-20T11:36:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-11T12:39:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/shutterstock_1668271543.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Stephen Gates\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"What Is Your API Attack Surface?\" \/>\n<meta name=\"twitter:description\" content=\"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/shutterstock_1668271543.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@checkmarx\" \/>\n<meta name=\"twitter:site\" content=\"@checkmarx\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stephen Gates\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\"},\"author\":{\"name\":\"Stephen Gates\",\"@id\":\"https:\/\/checkmarx.com\/#\/schema\/person\/1ea38abd0315d0956c3c9c173724345b\"},\"headline\":\"What Is Your API Attack Surface?\",\"datePublished\":\"2022-07-20T11:36:20+00:00\",\"dateModified\":\"2025-08-11T12:39:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\"},\"wordCount\":1335,\"publisher\":{\"@id\":\"https:\/\/checkmarx.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg\",\"keywords\":[\"API Security\",\"AppSec\",\"Article\",\"Awareness\",\"Checkmarx Application Security Platform\",\"Developer\",\"English\",\"Leadership\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\",\"url\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\",\"name\":\"What Is Your API Attack Surface? - Checkmarx.com\",\"isPartOf\":{\"@id\":\"https:\/\/checkmarx.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg\",\"datePublished\":\"2022-07-20T11:36:20+00:00\",\"dateModified\":\"2025-08-11T12:39:51+00:00\",\"description\":\"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage\",\"url\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg\",\"contentUrl\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg\",\"width\":1600,\"height\":800},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/checkmarx.com\/#website\",\"url\":\"https:\/\/checkmarx.com\/\",\"name\":\"Checkmarx\",\"description\":\"The world runs on code. We secure it.\",\"publisher\":{\"@id\":\"https:\/\/checkmarx.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/checkmarx.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/checkmarx.com\/#organization\",\"name\":\"Checkmarx\",\"url\":\"https:\/\/checkmarx.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/checkmarx.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/02\/logo-dark.svg\",\"contentUrl\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/02\/logo-dark.svg\",\"width\":1,\"height\":1,\"caption\":\"Checkmarx\"},\"image\":{\"@id\":\"https:\/\/checkmarx.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Checkmarx.Source.Code.Analysis\",\"https:\/\/x.com\/checkmarx\",\"https:\/\/www.youtube.com\/user\/CheckmarxResearchLab\",\"https:\/\/www.linkedin.com\/company\/checkmarx\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/checkmarx.com\/#\/schema\/person\/1ea38abd0315d0956c3c9c173724345b\",\"name\":\"Stephen Gates\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/checkmarx.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/06\/avatar_15.png\",\"contentUrl\":\"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/06\/avatar_15.png\",\"caption\":\"Stephen Gates\"},\"url\":\"https:\/\/checkmarx.com\/author\/stephen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What Is Your API Attack Surface? - Checkmarx.com","description":"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.","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:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/","og_locale":"en_US","og_type":"article","og_title":"What Is Your API Attack Surface?","og_description":"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.","og_url":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/","og_site_name":"Checkmarx","article_publisher":"https:\/\/www.facebook.com\/Checkmarx.Source.Code.Analysis","article_published_time":"2022-07-20T11:36:20+00:00","article_modified_time":"2025-08-11T12:39:51+00:00","og_image":[{"width":1000,"height":482,"url":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/shutterstock_1668271543.jpg","type":"image\/jpeg"}],"author":"Stephen Gates","twitter_card":"summary_large_image","twitter_title":"What Is Your API Attack Surface?","twitter_description":"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.","twitter_image":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/shutterstock_1668271543.jpg","twitter_creator":"@checkmarx","twitter_site":"@checkmarx","twitter_misc":{"Written by":"Stephen Gates","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#article","isPartOf":{"@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/"},"author":{"name":"Stephen Gates","@id":"https:\/\/checkmarx.com\/#\/schema\/person\/1ea38abd0315d0956c3c9c173724345b"},"headline":"What Is Your API Attack Surface?","datePublished":"2022-07-20T11:36:20+00:00","dateModified":"2025-08-11T12:39:51+00:00","mainEntityOfPage":{"@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/"},"wordCount":1335,"publisher":{"@id":"https:\/\/checkmarx.com\/#organization"},"image":{"@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage"},"thumbnailUrl":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg","keywords":["API Security","AppSec","Article","Awareness","Checkmarx Application Security Platform","Developer","English","Leadership"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/","url":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/","name":"What Is Your API Attack Surface? - Checkmarx.com","isPartOf":{"@id":"https:\/\/checkmarx.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage"},"image":{"@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage"},"thumbnailUrl":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg","datePublished":"2022-07-20T11:36:20+00:00","dateModified":"2025-08-11T12:39:51+00:00","description":"Establish an end-to-end API security strategy, complete with security testing, extensive discovery of available APIs, and the use of modern tooling and monitoring services. With some effort, you will improve the security posture of your APIs without hurting their overall performance.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/checkmarx.com\/blog\/what-is-your-api-attack-surface\/#primaryimage","url":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg","contentUrl":"https:\/\/checkmarx.com\/wp-content\/uploads\/2022\/07\/blog_API_orange-chair.jpg","width":1600,"height":800},{"@type":"WebSite","@id":"https:\/\/checkmarx.com\/#website","url":"https:\/\/checkmarx.com\/","name":"Checkmarx","description":"The world runs on code. We secure it.","publisher":{"@id":"https:\/\/checkmarx.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/checkmarx.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/checkmarx.com\/#organization","name":"Checkmarx","url":"https:\/\/checkmarx.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/checkmarx.com\/#\/schema\/logo\/image\/","url":"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/02\/logo-dark.svg","contentUrl":"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/02\/logo-dark.svg","width":1,"height":1,"caption":"Checkmarx"},"image":{"@id":"https:\/\/checkmarx.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Checkmarx.Source.Code.Analysis","https:\/\/x.com\/checkmarx","https:\/\/www.youtube.com\/user\/CheckmarxResearchLab","https:\/\/www.linkedin.com\/company\/checkmarx"]},{"@type":"Person","@id":"https:\/\/checkmarx.com\/#\/schema\/person\/1ea38abd0315d0956c3c9c173724345b","name":"Stephen Gates","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/checkmarx.com\/#\/schema\/person\/image\/","url":"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/06\/avatar_15.png","contentUrl":"https:\/\/checkmarx.com\/wp-content\/uploads\/2024\/06\/avatar_15.png","caption":"Stephen Gates"},"url":"https:\/\/checkmarx.com\/author\/stephen\/"}]}},"_links":{"self":[{"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/posts\/77455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/comments?post=77455"}],"version-history":[{"count":0,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/posts\/77455\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/media\/79357"}],"wp:attachment":[{"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/media?parent=77455"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/categories?post=77455"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/checkmarx.com\/wp-json\/wp\/v2\/tags?post=77455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}