{"id":10665,"date":"2024-07-12T14:14:38","date_gmt":"2024-07-12T14:14:38","guid":{"rendered":"https:\/\/www.salesforce.com\/?p=10665"},"modified":"2024-07-16T14:21:04","modified_gmt":"2024-07-16T14:21:04","slug":"what-is-api-design","status":"publish","type":"post","link":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/","title":{"rendered":"What is API Design?"},"content":{"rendered":"\n<p>API design makes deliberate choices about how an API will present data and functionality to its users. Effective API design outlines the API&#8217;s endpoints, methods, and resources using a standardised specification format.<\/p>\n\n\n\n<p>The design process works for users and developers. Why? It ensures APIs meet business goals while being user-friendly, adaptable, testable, and well-documented. API design should be addressed early in the API lifecycle to ensure alignment among key stakeholders and to identify potential issues before they become entrenched. It also plays a crucial role in API governance by helping teams create standardised API patterns that can be reused within the organisation.<\/p>\n\n\n\n<p>In this blog, we&#8217;ll look at the key stages of API, REST API, and some of the different types of API available.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-what-are-the-key-stages-of-api-design\">What are the key stages of API design?<\/h3>\n\n\n\n<p>Every organisation should follow some fundamental steps when designing an API. These steps require teamwork among stakeholders, including business leaders, developers, consumers, and partners, to ensure the API meets everyone&#8217;s needs. Collaborating throughout the process also helps developers avoid adding unnecessary features.&nbsp;<\/p>\n\n\n\n<p>Here are the steps for API design:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-1-define-the-api-s-purpose\">1. <strong>Define the API&#8217;s purpose<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><\/li>\n<\/ol>\n\n\n\n<p>The first step is to reach a consensus on what the API is supposed to accomplish. Different APIs serve different functions; for example, an API for authentication has different requirements than one for browsing a product catalogue. Understanding the use case is crucial before making other decisions. The use case will also influence the architecture choice, such as using gRPC for internal microservices or GraphQL for integrating multiple data sources. Once the API\u2019s purpose is clear, stakeholders should describe how the API will fulfil specific needs in plain language.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-2-ensure-reliable-service-contracts-for-apis\"><strong>2. Ensure Reliable Service Contracts for APIs<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><\/li>\n<\/ol>\n\n\n\n<p>When running one or more services, it&#8217;s crucial to have dependable service contracts that define their APIs. These contracts usually consist of detailed interface definitions that precisely outline and type the API each service offers. This makes it essential for the service code to accurately implement the interface, ensuring it meets its contract obligations. Detecting regressions and communicating changes through updates to the contract is vital.&nbsp;<\/p>\n\n\n\n<p>Service contracts typically include the following components:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The endpoints available and the operations each endpoint supports<\/li>\n\n\n\n<li>Input and output parameters for each operation<\/li>\n\n\n\n<li>Authentication methods<\/li>\n\n\n\n<li>Contact information, licence, terms of use, and other relevant details<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-3-validate-with-mocks-and-tests\">3. <strong>Validate with mocks and tests<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li><\/li>\n<\/ol>\n\n\n\n<p>With the API definition ready, you can create mock servers that simulate the API&#8217;s behaviour. Mock servers return sample data in response to requests, allowing you to verify that the API is functioning as expected. You can also run tests manually, on a schedule, or automatically through CI\/CD pipelines. Mocking and testing during design help identify and fix issues early, preventing consumer codebase problems.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-4-document-the-api\"><strong>4. Document the API<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li><\/li>\n<\/ol>\n\n\n\n<p>The final step is to document the API thoroughly. This involves detailing every resource, method, parameter, and path to ensure users can use the API quickly. Documentation should include examples of requests and responses to help users understand how the API supports common business needs. Some tools can generate documentation automatically from the API definition, keeping it up-to-date without extra effort from the team.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-different-types-of-apis\">Different types of APIs<\/h2>\n\n\n\n<p>There are four APIs in mainstream web services: partner, public, private and composite.&nbsp;<\/p>\n\n\n\n<p>Here, we\u2019ll go into each type of API in more detail\u2026<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-partner-apis\">Partner APIs<\/h3>\n\n\n\n<p>Partner APIs streamline B2B interactions by providing access solely to authorised external developers. Imagine a company needing to share customer data with external CRM systems; a partner API links the internal data to those CRM firms, ensuring no other API use.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-public-apis\">Public APIs<\/h3>\n\n\n\n<p>Public APIs, also known as open or external APIs, are open to any developer or business. Companies that want to share their applications and data create public APIs. They usually require moderate authentication and may be monetised on a per-call basis.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-internal-apis\">Internal APIs<\/h3>\n\n\n\n<p>Internal APIs, or private APIs, are designed for companies to integrate their systems and data \u2013for example, linking payroll and HR systems. Traditionally, internal APIs had weak or no security measures, but rising security threats and compliance demands are changing this approach.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-composite-apis\">Composite APIs<\/h3>\n\n\n\n<p>Composite APIs merge multiple APIs to perform a series of related tasks. They are useful for handling complex API operations and can enhance performance and speed compared to using individual APIs separately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-rest-api\">What is a REST API?<\/h2>\n\n\n\n<p>A REST API, or RESTful API, is a type of web API that adheres to the principles of the REST architectural style and enables interactions with RESTful web services. The acronym REST stands for representational state transfer.<\/p>\n\n\n\n<p>REST defines a set of architectural principles rather than a specific protocol or standard, allowing developers to implement it differently. When a client makes a request through RESTful API, it receives a representation of the resource&#8217;s state. This data can be presented in various formats through HTTP, such as JSON (JavaScript Object Notation), HTML, XML, Python, PHP, or plain text. JSON is particularly popular due to its language-agnostic nature and human and machine readability.<\/p>\n\n\n\n<p>Additionally, headers and parameters are crucial in HTTP methods used in RESTful API requests. They provide essential information about the request&#8217;s metadata, authorisation, uniform resource identifier (URI), cookies, caching, and more. There are distinct headers for requests and responses, each carrying HTTP connection details and status codes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-features-of-a-well-crafted-api\">Features of a well-crafted API<\/h2>\n\n\n\n<p>The advantages of a well-crafted API include enhanced developer experience, quicker documentation, and increased adoption for your API. But what exactly constitutes good API design?&nbsp;<\/p>\n\n\n\n<p>Generally, an effective API design will exhibit the following features:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Easy to understand and use:<\/strong> A well-crafted API will be user-friendly, with resources and operations that can be quickly grasped by developers who interact with it regularly.<\/li>\n\n\n\n<li><strong>Difficult to misuse:<\/strong> Implementing and integrating with a well-designed API will be straightforward, reducing the likelihood of writing incorrect code. It provides informative feedback and does not impose overly strict guidelines on the API&#8217;s users.<\/li>\n\n\n\n<li><strong>Comprehensive and succinct:<\/strong> A comprehensive API will enable developers to create full-fledged applications with your data. Achieving completeness typically occurs over time, with API designers and developers gradually enhancing existing APIs. This is an ideal goal that every engineer or company with an API should aspire to reach.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-kick-off-your-api-design-with-mulesoft\">Kick Off Your API Design with Mulesoft<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.salesforce.com\/uk\/mulesoft\/all-mulesoft-products\/\" target=\"_blank\" rel=\"noreferrer noopener\">MuleSoft<\/a> is a single web interface with a comprehensive toolset to help you manage APIs and integrations. Its wide functionality, from implementation to analysis and SLA monitoring, helps simplify and accelerate your connectivity. Plus, MuleSoft Automation helps boost productivity by connecting apps and automating processes. Learn more about getting started with automation and implementation with our <a href=\"https:\/\/www.mulesoft.com\/lp\/ebook\/api\/salesforce-integration-customer-360?d=7013y000000aKB0AAM&amp;nc=7013y000000aKAvAAM\">Salesforce Integration Customer 360 ebook<\/a>.<\/p>\n\n\n\n<div class=\"layout-one wp-block-salesforce-blog-offer\">\n\t<div class=\"wp-block-offer__wrapper\">\n\n\t\t<div class=\"wp-block-offer__content\">\n\t\t\t<h2 class=\"wp-block-offer__title\">Create connected experiences with MuleSoft + AI<\/h2>\n\t\t\t\t\t\t\t<p class=\"wp-block-offer__description\">Customer experiences and expectations are more important than ever, and AI allows organisations to innovate faster \u2014 empowering everyone customer-facing to create connected experiences.<\/p>\n\t\t\t\n\t\t\t\n\t\t\t\t\t\t\t<div class=\"wp-block-button\">\n\t\t\t\t\t<a class=\"wp-block-button__link\" target=\"_self\" href=\"https:\/\/www.mulesoft.com\/lp\/ebook\/api\/salesforce-integration-customer-360?d=7013y000000aKB0AAM&#038;nc=7013y000000aKAvAAM\">Download<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t<div class=\"wp-block-offer__media\">\n\t\t\t\t\t<\/div>\n\t<\/div>\n\n\t\t\t<div class=\"wp-block-offer__graphics wp-block-offer__contour\"><\/div>\n\t\n\t\t\t<!-- Standard Illustration -->\n\t\t<img decoding=\"async\" class=\"wp-block-offer__graphics wp-block-offer__illustration\" src=\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/themes\/salesforce-blog\/dist\/images\/offer-block\/offer-illustration-layout-one.png\" alt=\"\">\n\n\t\t<!-- Small Accent Illustration -->\n\t\t\t\t\t<img decoding=\"async\" class=\"wp-block-offer__graphics wp-block-offer__accent\" src=\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/themes\/salesforce-blog\/dist\/images\/offer-block\/offer-accent-layout-one.png\" alt=\"\">\n\t\t\n\t\t<!-- Left Side Illustration -->\n\t\t\n\t\t<!-- Cloud Illustration -->\n\t\t\t\t\t<img decoding=\"async\" class=\"wp-block-offer__graphics wp-block-offer__cloud\" src=\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/themes\/salesforce-blog\/dist\/images\/offer-block\/offer-cloud-layout-one.png\" alt=\"\">\n\t\t\n\t<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Explore the best practices for API design and understand more about different types of API, including REST API.<\/p>\n","protected":false},"author":288,"featured_media":797,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"sf_justforyou_enable_alt":true,"optimizely_content_id":"9c436df179a94ce1b769de04ca8c987a","post_meta_title":"","ai_synopsis":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"sf_topic":[72,144,251],"sf_content_type":[],"coauthors":[16],"class_list":["post-10665","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","sf_topic-it","sf_topic-cio","sf_topic-ai"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What is API Design? - Salesforce<\/title>\n<meta name=\"description\" content=\"Explore the best practices for API design and understand more about different types of API, including REST API.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is API Design?\" \/>\n<meta property=\"og:description\" content=\"Explore the best practices for API design and understand more about different types of API, including REST API.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\" \/>\n<meta property=\"og:site_name\" content=\"Salesforce\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-12T14:14:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-16T14:21:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"281\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Salesforce UK\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Salesforce UK\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\"},\"author\":[{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/image\/33c8591ac1216f9740d1866229926a3e\"}],\"headline\":\"What is API Design?\",\"datePublished\":\"2024-07-12T14:14:38+00:00\",\"dateModified\":\"2024-07-16T14:21:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\"},\"wordCount\":1110,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg\",\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\",\"url\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\",\"name\":\"What is API Design? - Salesforce\",\"isPartOf\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg\",\"datePublished\":\"2024-07-12T14:14:38+00:00\",\"dateModified\":\"2024-07-16T14:21:04+00:00\",\"author\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/dcc5d72b477aa95a7ba34ba32516f89a\"},\"description\":\"Explore the best practices for API design and understand more about different types of API, including REST API.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage\",\"url\":\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg\",\"contentUrl\":\"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg\",\"width\":500,\"height\":281,\"caption\":\"Salesforce Ramadan Challenge 2023\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.salesforce.com\/eu\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is API Design?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/#website\",\"url\":\"https:\/\/www.salesforce.com\/eu\/blog\/\",\"name\":\"Salesforce\",\"description\":\"News, tips, and insights from the global cloud leader\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.salesforce.com\/eu\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/image\/33c8591ac1216f9740d1866229926a3e\",\"name\":\"Salesforce UK\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g23494c9101089ad44ae88ce9d2f56aac\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Salesforce UK\"},\"url\":\"https:\/\/www.salesforce.com\/eu\/blog\/author\/salesforce-uk\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What is API Design? - Salesforce","description":"Explore the best practices for API design and understand more about different types of API, including REST API.","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:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/","og_locale":"en_GB","og_type":"article","og_title":"What is API Design?","og_description":"Explore the best practices for API design and understand more about different types of API, including REST API.","og_url":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/","og_site_name":"Salesforce","article_published_time":"2024-07-12T14:14:38+00:00","article_modified_time":"2024-07-16T14:21:04+00:00","og_image":[{"width":500,"height":281,"url":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","type":"image\/jpeg"}],"author":"Salesforce UK","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Salesforce UK","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#article","isPartOf":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/"},"author":[{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/image\/33c8591ac1216f9740d1866229926a3e"}],"headline":"What is API Design?","datePublished":"2024-07-12T14:14:38+00:00","dateModified":"2024-07-16T14:21:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/"},"wordCount":1110,"commentCount":0,"image":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage"},"thumbnailUrl":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/","url":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/","name":"What is API Design? - Salesforce","isPartOf":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage"},"image":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage"},"thumbnailUrl":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","datePublished":"2024-07-12T14:14:38+00:00","dateModified":"2024-07-16T14:21:04+00:00","author":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/dcc5d72b477aa95a7ba34ba32516f89a"},"description":"Explore the best practices for API design and understand more about different types of API, including REST API.","breadcrumb":{"@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#primaryimage","url":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","contentUrl":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","width":500,"height":281,"caption":"Salesforce Ramadan Challenge 2023"},{"@type":"BreadcrumbList","@id":"https:\/\/www.salesforce.com\/eu\/blog\/what-is-api-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.salesforce.com\/eu\/blog\/"},{"@type":"ListItem","position":2,"name":"What is API Design?"}]},{"@type":"WebSite","@id":"https:\/\/www.salesforce.com\/eu\/blog\/#website","url":"https:\/\/www.salesforce.com\/eu\/blog\/","name":"Salesforce","description":"News, tips, and insights from the global cloud leader","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.salesforce.com\/eu\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.salesforce.com\/eu\/blog\/#\/schema\/person\/image\/33c8591ac1216f9740d1866229926a3e","name":"Salesforce UK","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g23494c9101089ad44ae88ce9d2f56aac","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Salesforce UK"},"url":"https:\/\/www.salesforce.com\/eu\/blog\/author\/salesforce-uk\/"}]}},"jetpack_featured_media_url":"https:\/\/www.salesforce.com\/eu\/blog\/wp-content\/uploads\/sites\/14\/2023\/09\/human-centred-designjpg.jpg","jetpack_sharing_enabled":true,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Salesforce","distributor_original_site_url":"https:\/\/www.salesforce.com\/eu\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/posts\/10665","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/users\/288"}],"replies":[{"embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/comments?post=10665"}],"version-history":[{"count":2,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/posts\/10665\/revisions"}],"predecessor-version":[{"id":10681,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/posts\/10665\/revisions\/10681"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/media\/797"}],"wp:attachment":[{"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/media?parent=10665"}],"wp:term":[{"taxonomy":"sf_topic","embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/sf_topic?post=10665"},{"taxonomy":"sf_content_type","embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/sf_content_type?post=10665"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.salesforce.com\/eu\/blog\/wp-json\/wp\/v2\/coauthors?post=10665"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}