{"id":3013,"date":"2024-12-04T08:08:10","date_gmt":"2024-12-04T14:08:10","guid":{"rendered":"https:\/\/readme.com\/resources\/?p=3013"},"modified":"2024-12-06T09:13:06","modified_gmt":"2024-12-06T15:13:06","slug":"sdk-vs-api","status":"publish","type":"post","link":"https:\/\/readme.com\/resources\/sdk-vs-api","title":{"rendered":"SDK vs API: Which One Should You Provide to Developers?"},"content":{"rendered":"\n<p>Written by: Brant Partington<\/p>\n\n\n\n<p>Developers are the lifeblood of your tech ecosystem. If they can\u2019t use your tools easily, your brilliant functionality might go unused. The tools you offer\u2014like APIs or SDKs\u2014shape how developers interact with your services and whether they stick around.<\/p>\n\n\n\n<p>Understanding the difference between APIs and SDKs, and knowing when to offer each, isn\u2019t just helpful\u2014it\u2019s essential. Developers influence product decisions, and in the fiercely competitive tech space, their experience can make or break your adoption.<\/p>\n\n\n\n<p>This article breaks down APIs and SDKs, highlights their differences, and helps you decide which will best serve your developer community.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is an API?<\/strong><\/h2>\n\n\n\n<p>APIs (Application Programming Interfaces) are the language-agnostic means that allow developers to interact with your technology.&nbsp;<\/p>\n\n\n\n<p>APIs are services with strongly defined contracts (called API specifications) that detail both the interaction protocols, as well as the data sent to and\/or received from your services.<\/p>\n\n\n\n<p>Often, API specifications are defined using OpenAPI (<a href=\"https:\/\/readme.com\/resources\/what-is-swagger-and-why-it-matters\">formerly called Swagger<\/a>) specifications, which is a way to define your API\u2019s contracts.&nbsp;<\/p>\n\n\n\n<p>API specifications also frequently provide the initial documentation for your APIs through the use of documentation generation tools, such as <a href=\"https:\/\/docs.readme.com\/main\/docs\/adding-your-api-reference\">ReadMe\u2019s OpenAPI Upload Support<\/a>.&nbsp;<\/p>\n\n\n\n<p>After uploading your OpenAPI specification, ReadMe automatically generates API documentation that provides developers with the information they need to integrate with your APIs.&nbsp;<\/p>\n\n\n\n<p>ReadMe then allows you to customize the documentation using our easy-to-use WYSIWYG editor. ReadMe also enables both technical and non-technical users to suggest edits and collaborate on API documentation, reducing friction in documentation processes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is an SDK?<\/strong><\/h2>\n\n\n\n<p>An SDK (Software Development Kit) is an add-on to APIs that makes your APIs easier to consume. SDKs include foundational building blocks to give developers a head start in using technology services.<\/p>\n\n\n\n<p>They provide benefits to an API consumer above and beyond the APIs themselves.&nbsp;<\/p>\n\n\n\n<p>To use a metaphor, an SDK is like buying a bagged salad kit. The salad kit provides everything you need to serve a specific salad, making your life easier.&nbsp;<\/p>\n\n\n\n<p>For example, an SDK might provide data object structures in a particular language used in your APIs which a developer could leverage.&nbsp;<\/p>\n\n\n\n<p>Or, an SDK could provide the underlying network support to call your APIs from a particular language. It can also streamline business interactions, such as consolidating a few different API calls into a single interaction with the SDK.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g\" alt=\"\"\/><\/figure>\n\n\n\n<p>However, you could forgo the salad kit, and make the salad by buying and preparing the individual ingredients. You could even change the ingredients to your preference, similar to integrating directly to a set of APIs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>SDK vs API: how to choose<\/strong><\/h2>\n\n\n\n<p>At the end of the day, the question is not whether you should provide API vs SDK. Instead, the question is whether or not SDKs will benefit developers.&nbsp;<\/p>\n\n\n\n<p>Developers need APIs to access your tech services. Without them, developers are limited in their interaction with your service.&nbsp;<\/p>\n\n\n\n<p>APIs give developers the flexibility to integrate with your services from any programming language and perhaps even in use cases you haven\u2019t thought of yet.<\/p>\n\n\n\n<p>An example would be developers needing to provide Proof of Concepts (PoCs) and validate API sequencing using efficiency tools like <a href=\"https:\/\/docs.readme.com\/main\/docs\/manual-api-editor#try-it\">ReadMe\u2019s TryIt!<\/a> functionality. It lets you quickly and easily kick the tires on API functionality without writing a line of code. And to leverage it, you must offer a functional and testable API.<\/p>\n\n\n\n<p>Without APIs, users are only able to access your services when on your company-hosted assets, such as mobile apps or your website.&nbsp;<\/p>\n\n\n\n<p>But let\u2019s go back to SDKs. How does this technology benefit developers specifically?&nbsp;<\/p>\n\n\n\n<p>Here are two pros of using SDKs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>SDK pro: programming language-specific data structures<\/strong><\/h3>\n\n\n\n<p>SDKs simplify the amount of work it takes to create and\/or consume data structures from APIs. Without an SDK, developers must spend time translating to\/from their own data structures from\/to the data structures defined in the API specifications.<\/p>\n\n\n\n<p>APIs are simply http\/https endpoints. They receive and provide data in a programming language-agnostic manner. (I.e. it doesn\u2019t matter what development language the client is built in). While being flexible, this does add work for developers to translate to the API language.&nbsp;<\/p>\n\n\n\n<p>This is a difference between SDK and API, as SDKs are generally provided in common programming languages, such as JavaScript, Java, or Python. They provide the objects needed by applications to use the services. This allows developers to focus on using the functionality exposed via API instead of spending time on the translations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>SDK pro: business logic optimization<\/strong><\/h3>\n\n\n\n<p>Technology services generally architect APIs to complete one transaction or one unit of work.&nbsp;<\/p>\n\n\n\n<p>This approach best allows for a service-oriented architecture (SOA) in which services may be consumed for a single task. Each service can be leveraged from any number of clients (internally and externally).&nbsp;<\/p>\n\n\n\n<p>But depending on the complexity of the API interaction, this can be confusing to developers who aren\u2019t subject matter experts. This complexity could cause developers a lot of extra work to figure out the proper interaction, especially if API documentation is not clear and thorough.&nbsp;<\/p>\n\n\n\n<p><strong><em>Pro tip:<\/em><\/strong><em> Check out our guide to <\/em><a href=\"https:\/\/readme.com\/resources\/what-is-api-documentation-101\"><em>API documentation<\/em><\/a><em> to understand why it\u2019s a necessity. Also, if you have trouble keeping your API documentation up-to-date, ReadMe offers better version control for workflow management, ensuring documentation stays accurate and accessible across different API versions.<\/em><\/p>\n\n\n\n<p>Further, developers may need to redo their work if they believe it to work one way, but discover their mistake late in development. In either case, the developer is left frustrated.<\/p>\n\n\n\n<p>In these complex scenarios, providing an SDK to consolidate these interactions is valuable.&nbsp;<\/p>\n\n\n\n<p>The SDK could link together a series of actions, or provide some decision-making based upon common scenarios for a particular client type (e.g. a mobile app). Again, these SDKs would be programming language-specific, giving the developer a jump start to getting the API interaction as intended.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why SDKs Aren\u2019t Always the Best Option<\/strong><\/h2>\n\n\n\n<p>It might seem like providing SDKs is a no-brainer\u2014they save developers time and effort, right?<\/p>\n\n\n\n<p>Not so fast.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Maintaining SDKs can be costly and time-consuming<\/strong><\/h3>\n\n\n\n<p>Providing SDKs requires an investment of resources. You\u2019re not just creating SDKs\u2014you\u2019re responsible for keeping them up-to-date with evolving APIs, which can become a massive, ongoing effort.<\/p>\n\n\n\n<p>One approach that helps is using <a href=\"https:\/\/www.stainlessapi.com\/\">Stainless<\/a> for automatic SDK generation. ReadMe has an <a href=\"https:\/\/docs.readme.com\/main\/docs\/stainless\">integration with Stainless<\/a> which automatically updates your API documentation with the Stainless-enhanced OpenAPI spec.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Syncing SDKs with API updates delays adoption<\/strong><\/h3>\n\n\n\n<p>Every time your API is updated, corresponding SDKs need to be updated too. This delay can frustrate customers who rely on SDKs, as they may be unable to access new API functionality right away, potentially derailing important projects.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>SDK versioning creates extra work for customers<\/strong><\/h3>\n\n\n\n<p>When you release a new SDK version, customers have to test it, integrate it, and account for it in their regression testing and release schedules. This extra maintenance can pull developers away from building new features and slow down their productivity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Third-party code policies may block SDK use<\/strong><\/h3>\n\n\n\n<p>Finally, some organizations have strict policies for including third-party code in their code\u2014it\u2019s simply not allowed or must go through extensive privacy and security reviews prior to approval.&nbsp;<\/p>\n\n\n\n<p>These concerns may steer developers to integrate directly with published APIs, giving them more flexibility and control over their release processes and version control.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Thoughtful SDK delivery<\/strong><\/h2>\n\n\n\n<p>At the end of the day, be strategic about your SDKs.<\/p>\n\n\n\n<p>Ask yourself these questions:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Are SDKs truly saving developers time, or is the maintenance burden canceling out the benefits?&nbsp;<\/li>\n\n\n\n<li>Are you offering SDKs in the programming languages your developers actually need?&nbsp;<\/li>\n\n\n\n<li>How can you ensure the SDKs are well-documented and easy to use?<\/li>\n\n\n\n<li>Will providing SDKs encourage more developers to adopt your product compared to using APIs alone?<\/li>\n\n\n\n<li>Are there specific features or functionality that are harder to implement without an SDK?<\/li>\n\n\n\n<li>What\u2019s your plan for handling SDK versioning and backward compatibility?<\/li>\n<\/ul>\n\n\n\n<p>Thoughtful answers to these questions will shape a strong SDK strategy.<\/p>\n\n\n\n<p>Once your strategy is in place, stay flexible. You can\u2019t pull SDKs once they\u2019re in the wild, but you can ensure they continue to deliver value.&nbsp;<\/p>\n\n\n\n<p>Monitor usage closely, gather developer feedback, and be ready to adapt. If an SDK isn\u2019t meeting expectations, don\u2019t hesitate to refine it\u2014or even deprecate it entirely if it\u2019s no longer useful.<\/p>\n\n\n\n<p>The key is listening to your developer community and letting their needs guide your decisions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Written by: Brant Partington Developers are the lifeblood of your tech ecosystem. If they can\u2019t use your tools easily, your brilliant functionality might go unused. The tools you offer\u2014like APIs or SDKs\u2014shape how developers interact with your services and whether they stick around. Understanding the difference between APIs and SDKs, and knowing when to offer [&hellip;]<\/p>\n","protected":false},"author":19,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","inline_featured_image":false,"footnotes":""},"categories":[22],"tags":[],"ppma_author":[66],"class_list":["post-3013","post","type-post","status-publish","format-standard","hentry","category-api-tips"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SDK or API? How to Make the Right Call for Your Devs<\/title>\n<meta name=\"description\" content=\"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/readme.com\/resources\/sdk-vs-api\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SDK or API? How to Make the Right Call for Your Devs\" \/>\n<meta property=\"og:description\" content=\"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/readme.com\/resources\/sdk-vs-api\" \/>\n<meta property=\"og:site_name\" content=\"ReadMe: Resource Library\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-04T14:08:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-06T15:13:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g\" \/>\n<meta name=\"author\" content=\"Brant Partington\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brant Partington\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api\",\"url\":\"https:\/\/readme.com\/resources\/sdk-vs-api\",\"name\":\"SDK or API? How to Make the Right Call for Your Devs\",\"isPartOf\":{\"@id\":\"https:\/\/readme.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage\"},\"image\":{\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g\",\"datePublished\":\"2024-12-04T14:08:10+00:00\",\"dateModified\":\"2024-12-06T15:13:06+00:00\",\"author\":{\"@id\":\"https:\/\/readme.com\/resources\/#\/schema\/person\/7fa99449aefc274c9ddfc526cc4068e7\"},\"description\":\"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.\",\"breadcrumb\":{\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/readme.com\/resources\/sdk-vs-api\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage\",\"url\":\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g\",\"contentUrl\":\"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/readme.com\/resources\/sdk-vs-api#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/readme.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SDK vs API: Which One Should You Provide to Developers?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/readme.com\/resources\/#website\",\"url\":\"https:\/\/readme.com\/resources\/\",\"name\":\"ReadMe: Resource Library\",\"description\":\"Making API documentation better for everyone\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/readme.com\/resources\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/readme.com\/resources\/#\/schema\/person\/7fa99449aefc274c9ddfc526cc4068e7\",\"name\":\"Brant Partington\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/readme.com\/resources\/#\/schema\/person\/image\/6cac1ddd7bdd37bd1bc939c7dc54f927\",\"url\":\"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png\",\"contentUrl\":\"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png\",\"caption\":\"Brant Partington\"},\"description\":\"Brant is a Solution Architect and SaaS integration specialist. When not working, Brant is most often found watching Boston area sports teams or exploring wine from around the world.\",\"url\":\"https:\/\/readme.com\/resources\/author\/brant-partington\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SDK or API? How to Make the Right Call for Your Devs","description":"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.","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:\/\/readme.com\/resources\/sdk-vs-api","og_locale":"en_US","og_type":"article","og_title":"SDK or API? How to Make the Right Call for Your Devs","og_description":"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.","og_url":"https:\/\/readme.com\/resources\/sdk-vs-api","og_site_name":"ReadMe: Resource Library","article_published_time":"2024-12-04T14:08:10+00:00","article_modified_time":"2024-12-06T15:13:06+00:00","og_image":[{"url":"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g"}],"author":"Brant Partington","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Brant Partington","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/readme.com\/resources\/sdk-vs-api","url":"https:\/\/readme.com\/resources\/sdk-vs-api","name":"SDK or API? How to Make the Right Call for Your Devs","isPartOf":{"@id":"https:\/\/readme.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage"},"image":{"@id":"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage"},"thumbnailUrl":"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g","datePublished":"2024-12-04T14:08:10+00:00","dateModified":"2024-12-06T15:13:06+00:00","author":{"@id":"https:\/\/readme.com\/resources\/#\/schema\/person\/7fa99449aefc274c9ddfc526cc4068e7"},"description":"APIs enable integration; SDKs simplify it. Find out when to use APIs, SDKs, or both to maximize developer engagement and adoption.","breadcrumb":{"@id":"https:\/\/readme.com\/resources\/sdk-vs-api#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/readme.com\/resources\/sdk-vs-api"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/readme.com\/resources\/sdk-vs-api#primaryimage","url":"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g","contentUrl":"https:\/\/lh7-rt.googleusercontent.com\/docsz\/AD_4nXdYK9MeU6kREVfxoYBsPNIi-90viisXOU5mppFvE__-w2VRxTCMCdJqJs_Sa6k9qa4jwq4er50HPA1ZOEhih9bPov-6NMpz-sV1rE0n_PlhsNNSeq6PRZ1eUWl1-oS8bnlKXKNQBGnvidfkTDCtcRjjVJmL?key=4aEV27msN0x_j9iGuRz9_g"},{"@type":"BreadcrumbList","@id":"https:\/\/readme.com\/resources\/sdk-vs-api#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/readme.com\/resources\/"},{"@type":"ListItem","position":2,"name":"SDK vs API: Which One Should You Provide to Developers?"}]},{"@type":"WebSite","@id":"https:\/\/readme.com\/resources\/#website","url":"https:\/\/readme.com\/resources\/","name":"ReadMe: Resource Library","description":"Making API documentation better for everyone","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/readme.com\/resources\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/readme.com\/resources\/#\/schema\/person\/7fa99449aefc274c9ddfc526cc4068e7","name":"Brant Partington","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/readme.com\/resources\/#\/schema\/person\/image\/6cac1ddd7bdd37bd1bc939c7dc54f927","url":"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png","contentUrl":"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png","caption":"Brant Partington"},"description":"Brant is a Solution Architect and SaaS integration specialist. When not working, Brant is most often found watching Boston area sports teams or exploring wine from around the world.","url":"https:\/\/readme.com\/resources\/author\/brant-partington"}]}},"authors":[{"term_id":66,"user_id":19,"is_guest":0,"slug":"brant-partington","display_name":"Brant Partington","avatar_url":{"url":"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png","url2x":"https:\/\/readme.com\/resources\/wp-content\/uploads\/2024\/12\/Screenshot-2024-12-06-221043.png"},"first_name":"Brant","last_name":"Partington","position":"Solution Architect","slogan":"","description":"Brant is a Solution Architect and SaaS integration specialist. When not working, Brant is most often found watching Boston area sports teams or exploring wine from around the world."}],"_links":{"self":[{"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/posts\/3013","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/users\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/comments?post=3013"}],"version-history":[{"count":0,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/posts\/3013\/revisions"}],"wp:attachment":[{"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/media?parent=3013"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/categories?post=3013"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/tags?post=3013"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/readme.com\/resources\/wp-json\/wp\/v2\/ppma_author?post=3013"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}