CINXE.COM

Mintlify - Customers

<!DOCTYPE html><!-- Last Published: Tue Nov 26 2024 20:09:59 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="landing.mintlify.com" data-wf-page="66f2d00ab0645a18b1b85ff7" data-wf-site="66cc2bd703ccf308a49a6188" lang="en"><head><meta charset="utf-8"/><title>Mintlify - Customers</title><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." name="description"/><meta content="Mintlify - Customers" property="og:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="og:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="og:image"/><meta content="Mintlify - Customers" property="twitter:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/css/mintlify-lander.e68ba1a34.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e0d67f2324645580a18_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e124fa129b7d5fd6c4a_webclip.png" rel="apple-touch-icon"/><script> (function() { var savedTheme = localStorage.getItem('isDarkMode'); var systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; var isDark = savedTheme === 'true' || (savedTheme === null && systemDark); if (isDark) { document.documentElement.classList.add('dark-mode'); } document.documentElement.classList.add('theme-loaded'); })(); </script> <script tr-color-vars="background-main,background-invert,text-main,text-invert,text-soft,text-sub,muted,muted-invert,muted-invert-90,border-solid,border-soft,border-sub,background-soft,transparent,transparent-invert,brand,brand-8"></script> <script> (function() { const htmlElement = document.documentElement; const scriptTag = document.querySelector("[tr-color-vars]"); const cssVariables = scriptTag ? scriptTag.getAttribute("tr-color-vars").split(",") : []; let lightColors = {}; let darkColors = {}; // Capture initial color values cssVariables.forEach(item => { const lightValue = getComputedStyle(htmlElement).getPropertyValue(`--color--${item}`); const darkValue = getComputedStyle(htmlElement).getPropertyValue(`--dark--${item}`) || lightValue; lightColors[`--color--${item}`] = lightValue; darkColors[`--color--${item}`] = darkValue; }); function setColors(colorObject) { Object.keys(colorObject).forEach(key => { htmlElement.style.setProperty(key, colorObject[key]); }); } function switchImageSource(element, isDarkMode) { const lightSrc = element.getAttribute('data-light-src'); const darkSrc = element.getAttribute('data-dark-src'); const lightSrcset = element.getAttribute('data-light-srcset'); const darkSrcset = element.getAttribute('data-dark-srcset'); if (isDarkMode) { if (darkSrc) element.src = darkSrc; if (darkSrcset) element.srcset = darkSrcset; } else { if (lightSrc) element.src = lightSrc; if (lightSrcset) element.srcset = lightSrcset; } } function switchAssets(isDarkMode) { document.querySelectorAll('.theme-asset').forEach(asset => { if (asset.tagName.toLowerCase() === 'picture') { asset.querySelectorAll('source, img').forEach(element => { switchImageSource(element, isDarkMode); }); } else if (asset.tagName.toLowerCase() === 'img') { switchImageSource(asset, isDarkMode); } }); document.querySelectorAll('.dark-asset, .light-asset').forEach(asset => { asset.classList.toggle('hidden', isDarkMode ? asset.classList.contains('light-asset') : asset.classList.contains('dark-asset')); }); } function setTheme(isDarkMode) { localStorage.setItem("isDarkMode", isDarkMode); htmlElement.classList.toggle("dark-mode", isDarkMode); document.body.classList.add('theme-loaded'); setColors(isDarkMode ? darkColors : lightColors); switchAssets(isDarkMode); updateToggleStates(isDarkMode); } function updateToggleStates(isDarkMode) { const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.querySelector('[tr-color-system]')?.classList.toggle('active', isDarkMode === systemDark); document.querySelector('[tr-color-light]')?.classList.toggle('active', !isDarkMode); document.querySelector('[tr-color-dark]')?.classList.toggle('active', isDarkMode); } function initializeTheme() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; setTheme(isDarkMode); window.matchMedia("(prefers-color-scheme: dark)").addListener(() => { if (localStorage.getItem("isDarkMode") === null) { setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); } }); } function setupToggles() { document.querySelector('[tr-color-system]')?.addEventListener("click", () => { localStorage.removeItem("isDarkMode"); setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); }); document.querySelector('[tr-color-light]')?.addEventListener("click", () => setTheme(false)); document.querySelector('[tr-color-dark]')?.addEventListener("click", () => setTheme(true)); } function preloadCorrectAssets() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; switchAssets(isDarkMode); } // Preload correct assets immediately preloadCorrectAssets(); // Initialize theme and setup toggles when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { initializeTheme(); setupToggles(); }); } else { initializeTheme(); setupToggles(); } })(); </script> <style> :root { --color--background-main: #ffffff; } .dark-mode { --color--background-main: #08090A; } body { background-color: var(--color--background-main); } /* Hide the body until the theme is loaded */ body:not(.theme-loaded) { visibility: hidden; } </style> <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/> <!-- Cal element-click embed code begins --> <script type="text/javascript"> (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === "string"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, ["initNamespace", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "demo-with-mintlify", {origin:"https://cal.com"}); Cal("init", "mintlify-enterprise", {origin:"https://cal.com"}); Cal.ns["demo-with-mintlify", "mintlify-enterprise"]("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); </script> <!-- Cal element-click embed code ends --> <!-- Posthog --> <script> !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]); posthog.init('phc_eNuN6Ojnk9O7uWfC17z12AK85fNR0BY6IiGVy0Gfwzw',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well }) </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MJWB25XN');</script> <!-- End Google Tag Manager --> <!-- Quora Pixel Code (JS Helper) --> <script> !function(q,e,v,n,t,s){if(q.qp) return; n=q.qp=function(){n.qp?n.qp.apply(n,arguments):n.queue.push(arguments);}; n.queue=[];t=document.createElement(e);t.async=!0;t.src=v; s=document.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s);}(window, 'script', 'https://a.quora.com/qevents.js'); qp('init', 'c6c2eacaf9ae4ef89e5e5312c5333c7e'); qp('track', 'ViewContent'); </script> <noscript><img height="1" width="1" style="display:none" src="https://q.quora.com/_/ad/c6c2eacaf9ae4ef89e5e5312c5333c7e/pixel?tag=ViewContent&noscript=1"/></noscript> <!-- End of Quora Pixel Code --> <!-- Unify GTM Code (JS Helper) --> <script> !function(){window.unify||(window.unify=Object.assign([],["identify","page","startAutoPage","stopAutoPage","startAutoIdentify","stopAutoIdentify"].reduce((function(t,e){return t[e]=function(){return unify.push([e,[].slice.call(arguments)]),unify},t}),{})));var t=document.createElement("script");t.async=!0,t.setAttribute("src","https://tag.unifyintent.com/v1/ShALG1c5rTJzkBaNJWFZWP/script.js"),t.setAttribute("data-api-key","wk_98uM5hH8_CooeLr8Z3fRL39Q1rxtqo5fejQKhn3qL"),t.setAttribute("id","unifytag"),(document.body||document.head).appendChild(t)}(); </script> <!-- End of Quora Pixel Code --><!-- [Attributes by Finsweet] CMS Filter --> <script async src="https://cdn.jsdelivr.net/npm/@finsweet/attributes-cmsfilter@1/cmsfilter.js"></script> </head><body><div class="page-wrapper"><div class="bufo"><div id="bufo-cursor" class="bufo-cursor"></div><div class="code-embed w-embed w-script"><script> document.addEventListener('DOMContentLoaded', function() { let mintieCount = 0; let timeoutId = null; const mintieChars = ['m', 'i', 'n', 't', 'i', 'e']; function handleKeyDown(event) { if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; } if (event.key.toLowerCase() === mintieChars[mintieCount]) { mintieCount++; if (mintieCount === mintieChars.length) { // URL to your mode-independent GIF const gifUrl = 'https://mintlify-assets.b-cdn.net/website/home/minties.gif'; const cursorImage = document.createElement('img'); cursorImage.src = gifUrl; cursorImage.style.position = 'fixed'; cursorImage.style.zIndex = 9999; cursorImage.style.pointerEvents = 'none'; cursorImage.style.width = '32px'; cursorImage.style.height = 'auto'; cursorImage.style.transform = 'translate(-50%, -50%)'; document.body.appendChild(cursorImage); function updateCursorPosition(e) { cursorImage.style.left = e.clientX + 'px'; cursorImage.style.top = e.clientY + 'px'; } updateCursorPosition(event); document.addEventListener('mousemove', updateCursorPosition); timeoutId = setTimeout(() => { cursorImage.remove(); document.removeEventListener('mousemove', updateCursorPosition); mintieCount = 0; }, 3000); } else { clearTimeout(timeoutId); timeoutId = setTimeout(() => { mintieCount = 0; }, 1000); } } else { mintieCount = 0; clearTimeout(timeoutId); } } document.addEventListener('keydown', handleKeyDown); }); </script>'</div></div><div class="global-styles w-embed"><style> /* Make text look crisper and more legible in all browsers */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Focus state style for keyboard navigation for the focusable elements */ *[tabindex]:focus-visible, input[type="file"]:focus-visible { outline: 0.125rem solid #4d65ff; outline-offset: 0.125rem; } /* Set color style to inherit */ .inherit-color * { color: inherit; } /* Get rid of top margin on first element in any rich text element */ .w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child { margin-top: 0 !important; } /* Get rid of bottom margin on last element in any rich text element */ .w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child { margin-bottom: 0 !important; } /* Make sure containers never lose their center alignment */ .container-medium,.container-small, .container-large { margin-right: auto !important; margin-left: auto !important; } /* Make the following elements inherit typography styles from the parent and not have hardcoded values. Important: You will not be able to style for example "All Links" in Designer with this CSS applied. Uncomment this CSS to use it in the project. Leave this message for future hand-off. */ /* a, .w-input, .w-select, .w-tab-link, .w-nav-link, .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link { color: inherit; text-decoration: inherit; font-size: inherit; } */ /* Apply "..." after 3 lines of text */ .text-style-3lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /* Apply "..." after 2 lines of text */ .text-style-2lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* These classes are never overwritten */ .hide { display: none !important; } @media screen and (max-width: 991px) { .hide, .hide-tablet { display: none !important; } } @media screen and (max-width: 767px) { .hide-mobile-landscape{ display: none !important; } } @media screen and (max-width: 479px) { .hide-mobile{ display: none !important; } } .margin-0 { margin: 0rem !important; } .padding-0 { padding: 0rem !important; } .spacing-clean { padding: 0rem !important; margin: 0rem !important; } .margin-top { margin-right: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-top { padding-right: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-right { margin-top: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-right { padding-top: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-bottom { margin-top: 0rem !important; margin-right: 0rem !important; margin-left: 0rem !important; } .padding-bottom { padding-top: 0rem !important; padding-right: 0rem !important; padding-left: 0rem !important; } .margin-left { margin-top: 0rem !important; margin-right: 0rem !important; margin-bottom: 0rem !important; } .padding-left { padding-top: 0rem !important; padding-right: 0rem !important; padding-bottom: 0rem !important; } .margin-horizontal { margin-top: 0rem !important; margin-bottom: 0rem !important; } .padding-horizontal { padding-top: 0rem !important; padding-bottom: 0rem !important; } .margin-vertical { margin-right: 0rem !important; margin-left: 0rem !important; } .padding-vertical { padding-right: 0rem !important; padding-left: 0rem !important; } </style></div><nav class="navigation"><div data-animation="default" class="navbar w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e932" role="banner" data-duration="400"><div class="navbar_container"><a href="/" class="navbar_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="100%" height="auto" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><nav role="navigation" id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e936-1c96e931" class="navbar_menu is-page-height-tablet w-nav-menu"><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e965" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="https://mintlify.com/docs" class="navbar_link w-inline-block"><div>Documentation</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e96b-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e96b" href="https://mintlify.com/docs" class="nav-link-card with-image guides w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabfa0d26093561a2128e_Getting%20started.svg" alt="Feature set UI" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Guides</div></div><div class="text-style-muted">Start building modern documentation in under five minutes<br/></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e973-1c96e931" href="https://mintlify.com/docs/content/components/" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21884)"> <path d="M6.25 2.50195H3.75C2.7835 2.50195 2 3.28545 2 4.25195V6.75195C2 7.71845 2.7835 8.50195 3.75 8.50195H6.25C7.2165 8.50195 8 7.71845 8 6.75195V4.25195C8 3.28545 7.2165 2.50195 6.25 2.50195Z" fill="currentColor"/> <path d="M5 16.752C6.79493 16.752 8.25 15.2969 8.25 13.502C8.25 11.707 6.79493 10.252 5 10.252C3.20507 10.252 1.75 11.707 1.75 13.502C1.75 15.2969 3.20507 16.752 5 16.752Z" fill="currentColor"/> <path d="M15.5 12.752H13.75V11.002C13.75 10.588 13.414 10.252 13 10.252C12.586 10.252 12.25 10.588 12.25 11.002V12.752H10.5C10.086 12.752 9.75 13.088 9.75 13.502C9.75 13.916 10.086 14.252 10.5 14.252H12.25V16.002C12.25 16.416 12.586 16.752 13 16.752C13.414 16.752 13.75 16.416 13.75 16.002V14.252H15.5C15.914 14.252 16.25 13.916 16.25 13.502C16.25 13.088 15.914 12.752 15.5 12.752Z" fill="currentColor"/> <path d="M14.0829 2.70211C13.6319 1.92011 12.3689 1.91911 11.9179 2.70211L9.65192 6.62611C9.42592 7.01811 9.42592 7.48511 9.65192 7.87611C9.87792 8.26811 10.2829 8.50111 10.7349 8.50111H15.2659C15.7179 8.50111 16.1219 8.26811 16.3489 7.87611C16.5749 7.48511 16.5749 7.01811 16.3489 6.62611L14.0829 2.70211Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21884"> <rect width="18" height="18" fill="white" transform="translate(0 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Components</div></div><div class="text-style-muted">Explore the variety of components available</div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e97b-1c96e931" href="https://mintlify.com/docs/api-playground" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21895)"> <path d="M15.0459 2.5H4.5459C3.0289 2.5 1.7959 3.733 1.7959 5.25V13.75C1.7959 15.267 3.0289 16.5 4.5459 16.5H15.0459C16.5629 16.5 17.7959 15.267 17.7959 13.75V5.25C17.7959 3.733 16.5629 2.5 15.0459 2.5ZM7.7959 4.5C8.3479 4.5 8.7959 4.948 8.7959 5.5C8.7959 6.052 8.3479 6.5 7.7959 6.5C7.2439 6.5 6.7959 6.052 6.7959 5.5C6.7959 4.948 7.2439 4.5 7.7959 4.5ZM3.7959 5.5C3.7959 4.948 4.2439 4.5 4.7959 4.5C5.3479 4.5 5.7959 4.948 5.7959 5.5C5.7959 6.052 5.3479 6.5 4.7959 6.5C4.2439 6.5 3.7959 6.052 3.7959 5.5ZM8.5759 12.22C8.8689 12.513 8.8689 12.988 8.5759 13.281C8.4299 13.427 8.2379 13.501 8.0459 13.501C7.8539 13.501 7.6619 13.428 7.5159 13.281L5.2659 11.031C4.9729 10.738 4.9729 10.263 5.2659 9.97L7.5159 7.72C7.8089 7.427 8.2839 7.427 8.5769 7.72C8.8699 8.013 8.8699 8.488 8.5769 8.781L6.8569 10.501L8.5769 12.221L8.5759 12.22ZM14.3259 11.03L12.0759 13.28C11.9299 13.426 11.7379 13.5 11.5459 13.5C11.3539 13.5 11.1619 13.427 11.0159 13.28C10.7229 12.987 10.7229 12.512 11.0159 12.219L12.7359 10.499L11.0159 8.779C10.7229 8.486 10.7229 8.011 11.0159 7.718C11.3089 7.425 11.7839 7.425 12.0769 7.718L14.3269 9.968C14.6199 10.261 14.6199 10.736 14.3269 11.029L14.3259 11.03Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21895"> <rect width="18" height="18" fill="white" transform="translate(0.795898 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">API playground</div></div><div class="text-style-muted">Enable users to interact with your API<br/></div></div></a></div></nav></div><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e983" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="/customers" aria-current="page" class="navbar_link w-inline-block w--current"><div>Resources</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content resources"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e989-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e989" href="/customers" aria-current="page" class="nav-link-card with-image w-inline-block w--current"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" sizes="100vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png 972w"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Customers</div></div><div class="text-style-muted">Discover how we help our customers win</div></div></a><link rel="prefetch" href="/customers"/><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e991-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e991" href="/enterprise" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb1f61e959ed44eea75a0f_ENT-New-Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Enterprise</div></div><div class="text-style-muted">For organizations with custom needs<br/></div></div></a><link rel="prefetch" href="/enterprise"/><a id="w-node-_8c387d58-9737-ace0-1ec1-d0cf06bbf9e7-1c96e931" data-w-id="8c387d58-9737-ace0-1ec1-d0cf06bbf9e7" href="/blog" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabf98655455a7fb6b139_Blog.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Blog</div></div><div class="text-style-muted">Discover and stay updated on what鈥檚 happening</div></div></a><link rel="prefetch" href="/blog"/><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e999-1c96e931" class="_2x2-grid"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e99a-1c96e931" href="https://mintlify.com/security/responsible-disclosure" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>shield-check</title> <g fill="currentColor"> <path d="M14.783,2.813l-5.25-1.68c-.349-.112-.718-.111-1.066,0L3.216,2.813c-.728,.233-1.216,.903-1.216,1.667v6.52c0,3.508,4.946,5.379,6.46,5.869,.177,.057,.358,.086,.54,.086s.362-.028,.538-.085c1.516-.49,6.462-2.361,6.462-5.869V4.48c0-.764-.489-1.434-1.217-1.667Zm-2.681,4.389l-3.397,4.5c-.128,.169-.322,.276-.534,.295-.021,.002-.043,.003-.065,.003-.189,0-.372-.071-.511-.201l-1.609-1.5c-.303-.283-.32-.757-.038-1.06,.284-.303,.758-.319,1.06-.038l1.001,.933,2.896-3.836c.25-.33,.72-.396,1.051-.146,.331,.25,.396,.72,.146,1.051Z"></path> </g> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Security</div></div></div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4055_135)"> <path d="M7.04401 2H4.54401C3.57901 2 2.79401 2.785 2.79401 3.75V13C2.79401 14.654 4.14001 16 5.79401 16C7.44801 16 8.79401 14.654 8.79401 13V3.75C8.79401 2.785 8.00901 2 7.04401 2ZM5.79401 13.75C5.38001 13.75 5.04401 13.414 5.04401 13C5.04401 12.586 5.38001 12.25 5.79401 12.25C6.20801 12.25 6.54401 12.586 6.54401 13C6.54401 13.414 6.20801 13.75 5.79401 13.75Z" fill="currentColor"/> <path d="M14.456 6.10415L12.688 4.33615C12.053 3.70015 10.965 3.68215 10.293 4.27115V12.7402L14.455 8.57815C14.786 8.24715 14.968 7.80815 14.968 7.34115C14.968 6.87415 14.787 6.43415 14.456 6.10415Z" fill="currentColor"/> <path d="M15.1467 10.0078L9.15674 15.9978H15.0437C16.0087 15.9978 16.7937 15.2128 16.7937 14.2478V11.7478C16.7937 10.8188 16.0627 10.0628 15.1467 10.0078Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_4055_135"> <rect width="18" height="18" fill="white" transform="translate(0.793945)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Templates</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9a6-1c96e931" href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22859)"> <path d="M9.58987 7C10.7099 7 11.6719 6.325 12.1009 5.362C13.5389 6.104 14.6079 7.458 14.9599 9.058C15.0369 9.408 15.3479 9.646 15.6909 9.646C15.7449 9.646 15.7989 9.641 15.8539 9.628C16.2579 9.539 16.5129 9.138 16.4239 8.734C15.9349 6.522 14.3699 4.683 12.2939 3.809C12.0809 2.503 10.9539 1.5 9.58887 1.5C8.07187 1.5 6.83887 2.733 6.83887 4.25C6.83887 5.767 8.07187 7 9.58887 7H9.58987Z" fill="currentColor"/> <path d="M6.77681 11.8733C6.21681 10.9043 5.15081 10.4073 4.10281 10.5183C4.02581 8.90126 4.66381 7.29926 5.87181 6.19426C6.17781 5.91526 6.19881 5.44026 5.91981 5.13426C5.63981 4.82926 5.16581 4.80726 4.85981 5.08726C3.18781 6.61626 2.37781 8.89126 2.65881 11.1253C2.21381 11.4873 1.88981 11.9723 1.73781 12.5373C1.54881 13.2463 1.64581 13.9883 2.01281 14.6233C2.37981 15.2593 2.97281 15.7153 3.68281 15.9053C3.91881 15.9683 4.15981 16.0003 4.39881 16.0003C4.87581 16.0003 5.34481 15.8753 5.76881 15.6303C7.08081 14.8733 7.53381 13.1883 6.77581 11.8743L6.77681 11.8733Z" fill="currentColor"/> <path d="M17.443 12.5381C17.253 11.8291 16.797 11.2351 16.162 10.8681C14.85 10.1091 13.163 10.5621 12.405 11.8751C11.845 12.8451 11.949 14.0151 12.569 14.8671C11.209 15.7421 9.50404 15.9901 7.93804 15.4961C7.54104 15.3721 7.12204 15.5911 6.99804 15.9851C6.87304 16.3801 7.09204 16.8011 7.48704 16.9261C8.17004 17.1421 8.87504 17.2471 9.57704 17.2471C11.102 17.2471 12.609 16.7461 13.84 15.8071C14.145 15.9211 14.46 15.9991 14.783 15.9991C15.022 15.9991 15.262 15.9681 15.499 15.9041C16.209 15.7141 16.802 15.2581 17.169 14.6231C17.536 13.9881 17.634 13.2461 17.444 12.5371L17.443 12.5381Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22859"> <rect width="18" height="18" fill="white" transform="translate(0.59082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Integrations</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9ac-1c96e931" href="/love" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22851)"> <path d="M15.9988 13.49L14.7358 13.069L14.3148 11.806C14.1778 11.398 13.5028 11.398 13.3658 11.806L12.9448 13.069L11.6818 13.49C11.4778 13.558 11.3398 13.749 11.3398 13.964C11.3398 14.179 11.4778 14.37 11.6818 14.438L12.9448 14.859L13.3658 16.122C13.4338 16.326 13.6258 16.464 13.8408 16.464C14.0558 16.464 14.2468 16.326 14.3158 16.122L14.7368 14.859L15.9998 14.438C16.2038 14.37 16.3418 14.179 16.3418 13.964C16.3418 13.749 16.2038 13.558 15.9998 13.49H15.9988Z" fill="currentColor"/> <path d="M12.5049 2.5C11.3099 2.515 10.1809 2.99 9.34086 3.806C8.50086 2.991 7.36886 2.515 6.16286 2.5C3.63286 2.515 1.58086 4.584 1.59086 7.109C1.59086 12.362 6.89686 15.538 8.52286 16.387C8.77886 16.52 9.05986 16.587 9.34086 16.587C9.62186 16.587 9.90286 16.52 10.1579 16.387C10.4079 16.257 10.7499 16.065 11.1399 15.827C10.3629 15.535 9.83986 14.802 9.83986 13.965C9.83986 13.102 10.3899 12.34 11.2089 12.068L11.7589 11.884L11.9429 11.333C12.2099 10.535 12.9719 10.001 13.8399 10.001C14.7079 10.001 15.4699 10.535 15.7369 11.331L15.7809 11.463C16.5579 10.225 17.0899 8.774 17.0899 7.114C17.0989 4.586 15.0479 2.517 12.5039 2.502L12.5049 2.5ZM9.08386 8.981L8.13786 9.296L7.82186 10.243C7.77086 10.396 7.62786 10.499 7.46686 10.499C7.30586 10.499 7.16186 10.395 7.11186 10.243L6.79586 9.296L5.84986 8.981C5.69686 8.93 5.59286 8.787 5.59286 8.625C5.59286 8.463 5.69686 8.32 5.84986 8.269L6.79586 7.954L7.11186 7.007C7.21386 6.701 7.72086 6.701 7.82286 7.007L8.13886 7.954L9.08486 8.269C9.23786 8.32 9.34186 8.463 9.34186 8.625C9.34186 8.787 9.23786 8.93 9.08486 8.981H9.08386ZM12.5909 7.5C12.1769 7.5 11.8409 7.164 11.8409 6.75C11.8409 6.336 12.1769 6 12.5909 6C13.0049 6 13.3409 6.336 13.3409 6.75C13.3409 7.164 13.0049 7.5 12.5909 7.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22851"> <rect width="18" height="18" fill="white" transform="translate(0.34082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Wall of Love</div></div></div></a><link rel="prefetch" href="/love"/></div></div></nav></div><a href="/preview" class="navbar_link hide-tablet sing-p w-nav-link">Request Preview</a><a href="/careers" class="navbar_link hide-tablet sing-p w-nav-link">Careers</a><a href="/pricing" class="navbar_link hide-tablet sing-p w-nav-link">Pricing</a><div class="responsive-nav"><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9f0-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Documentation</div><a href="https://mintlify.com/docs" class="nav-link-block w-inline-block"><div>Getting Started</div></a><a href="https://mintlify.com/docs/content/components" class="nav-link-block w-inline-block"><div>Components</div></a><a href="https://mintlify.com/docs/api-playground/" class="nav-link-block w-inline-block"><div>API Playground</div></a><a href="/pricing" class="nav-link-block w-inline-block"><div>Pricing</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9fc-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Resources</div><a href="/customers" aria-current="page" class="nav-link-block w-inline-block w--current"><div>Customers</div></a><a href="/enterprise" class="nav-link-block w-inline-block"><div>Enterprise</div></a><a href="/preview" class="nav-link-block w-inline-block"><div>Request Preview</div></a><a href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-block w-inline-block"><div>Integrations</div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-block w-inline-block"><div>Templates</div></a><a href="/love" class="nav-link-block w-inline-block"><div>Wall of Love</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea11-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Company</div><a href="/blog" class="nav-link-block w-inline-block"><div>Blog</div></a><a href="/careers" class="nav-link-block w-inline-block"><div>Careers</div></a><a href="https://feedback.mintlify.com/roadmap" class="nav-link-block w-inline-block"><div>Public Roadmap</div></a><a href="https://mintlify.com/security/responsible-disclosure" class="nav-link-block w-inline-block"><div>Security</div></a></div></div><div class="hide-desktop flex"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small mobile-only w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-small mobile-only w-button">Book a demo</a></div></nav><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea25-1c96e931" class="navbar_button-wrapper"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small ghost hide-mobile-landscape w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary is-small hide-mobile-portrait w-button">Get a demo</a><a href="https://dashboard.mintlify.com/signup" class="button is-small w-button">Sign up</a><div class="navbar_menu-button w-nav-button"><div class="menu-icon"><div class="menu-icon_line-top"></div><div class="menu-icon_line-middle"><div class="menu-icon_line-middle-inner"></div></div><div class="menu-icon_line-bottom"></div></div></div></div></div></div><div class="glass-bg"></div></nav><main class="main-wrapper"><section class="page-title"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-xsmall"><p class="description align-center text-weight-medium">Customers</p></div><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2 text-weight-semibold">Meet the teams we empower</h1></div><p>Thousands of companies, from next-gen startups to enterprises, use Mintlify to build a world class user experience.</p></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-medium"><div class="w-layout-vflex flex-block"><div class="custom-grid"><div id="w-node-_3b3f0329-94c0-4ae7-28ed-43591fbd318b-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_8fb1eaac-f234-0547-2420-66e86f6136fa-b1b85ff7" href="/customers/scale" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/scale/Scale%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/scale/Scale%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/scale/Scale%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/scale/Scale%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Scale AI uses Mintlify for interactive API documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://scale.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-_0dcb83d5-8ebf-1ee6-311e-85a1378e9098-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_0dcb83d5-8ebf-1ee6-311e-85a1378e909b-b1b85ff7" href="/customers/anthropic" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/anthropic/Anthropic%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Anthropic provides a better developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://docs.anthropic.com/en/home" class="cover-btn w-condition-invisible w-button"></a></div></div></div></div><div class="custom-grid"><div id="w-node-_8be0f191-b5f8-23ad-1266-95bcfcee55d9-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_8be0f191-b5f8-23ad-1266-95bcfcee55dc-b1b85ff7" href="/customers/perplexity" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/perplexity/Perplexity%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Perplexity leverages Mintlify for interactive documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://docs.perplexity.ai/home" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-_2b07ee5b-1398-563e-80ae-75b6d2b87957-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_2b07ee5b-1398-563e-80ae-75b6d2b8795a-b1b85ff7" href="/customers/fidelity-investment" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/fidelity/Fidelity%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Fidelity levels up financial documentation with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://www.fidelity.com/" class="cover-btn w-condition-invisible w-button"></a></div></div></div></div><div class="custom-grid"><div id="w-node-_4f0ffa2e-dc31-7643-805d-c8cf3db25803-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_4f0ffa2e-dc31-7643-805d-c8cf3db25806-b1b85ff7" href="/customers/resend" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/resend/Resend%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">Why Resend partners with Mintlify to create world-class documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://resend.com/docs" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-_4f0ffa2e-dc31-7643-805d-c8cf3db25812-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_4f0ffa2e-dc31-7643-805d-c8cf3db25815-b1b85ff7" href="/customers/pinecone" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/pinecone/Pinecone%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Pinecone unifies their support ecosystem with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://docs.pinecone.io/" class="cover-btn w-condition-invisible w-button"></a></div></div></div></div><div class="custom-grid"><div id="w-node-_7b50c460-95d7-53fa-ef80-76b77bc1b216-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_7b50c460-95d7-53fa-ef80-76b77bc1b219-b1b85ff7" href="/customers/elevenlabs" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/elevenlabs/Eleven%20Lab%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/elevenlabs/Eleven%20Lab%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/elevenlabs/Eleven%20Lab%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/elevenlabs/Eleven%20Lab%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How ElevenLabs streamlines developer onboarding with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://elevenlabs.io/docs" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-a474a309-7c66-a471-222d-3ee63e38e104-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-a474a309-7c66-a471-222d-3ee63e38e107-b1b85ff7" href="/customers/cursor" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light-1.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light-1.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/cursor/Scale%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Cursor leverages Mintlify to simplify documentation management</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://docs.cursor.com/get-started/migrate-from-vscode" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-_0553e647-1ff9-ef56-b1a0-48b756899713-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-_0553e647-1ff9-ef56-b1a0-48b756899716-b1b85ff7" href="/customers/frigade" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/FD-light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/fd-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/fd-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/FD-light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">How Frigade provides a world-class developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://mintlify.com/customers/frigade" class="cover-btn w-condition-invisible w-button"></a></div></div></div><div id="w-node-ae7a49cc-93c5-4689-2895-e522e1c89a2b-b1b85ff7" class="ft-article-wrapper w-dyn-list"><div role="list" class="ft-article w-dyn-items"><div role="listitem" class="ft-article-card w-dyn-item"><a id="w-node-ae7a49cc-93c5-4689-2895-e522e1c89a2e-b1b85ff7" href="/customers/plain" class="article-item w-inline-block"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f4142aee41446a3ec92a99_6191a88a1c0e39463c2bf022_placeholder-image.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plaiun%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plain%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plain%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/plain/Plaiun%20Light.svg" loading="lazy"/></div><div class="feature-card-wrap blog-action new"><div class="text-style-2lines">Why Plain migrated from Docusaurus to Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div></a><a href="https://www.plain.com/docs/quickstart" class="cover-btn w-condition-invisible w-button"></a></div></div></div></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-medium"><div class="align-center max-width-medium"><h1 class="heading-style-h3 text-align-center"><span class="text-style-muted">What our</span> customers say about us</h1></div><div class="padding-section-small"><div class="test-wrap w-dyn-list"><div role="list" class="masonry w-dyn-items"><div role="listitem" class="test-item w-dyn-item"><a href="https://twitter.com/rauchg/status/1716864530775748905" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f72f9ef661cfcd7af2e316_guillermo.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Guillermo Rauch</div><div class="text-size-small">CEO, Vercel</div></div></div></div><div>The @mintlify team absolutely nailed combining docs search and AI Q&amp;A in a delightful experience.</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://infisical.com/docs" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7dfbd3967969f8cb24dde_vlad.jpeg" alt="" sizes="48px" srcset="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7dfbd3967969f8cb24dde_vlad-p-500.jpeg 500w, https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7dfbd3967969f8cb24dde_vlad.jpeg 800w" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Vlad Matsiiako</div><div class="text-size-small">Co-founder, Infisical</div></div></div></div><div>Mintlify is absolutely amazing! Their team has been such a pleasure to work with, and just look at our docs - they look gorgeous! I definitely think everyone should try Mintlify out!</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://resend.com/docs" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7dfeda7350acde7747c96_zeno.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Zeno Rocha</div><div class="text-size-small">CEO, Resend</div></div></div></div><div>This is a must-have if you&#x27;re building any kind of developer tools. We used other options in the past, which feels outdated in terms of look-n-feel when compared to Mintlify. The team helped us set up two different websites and even migrated all the content for us. I can&#x27;t recommend it enough.</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://docs.monterey.ai/" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7e0156b15e1843476989c_chun.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Chun Jiang</div><div class="text-size-small">CEO, Monterey AI</div></div></div></div><div>Absolutely the best. It is freaking easy to set up, and the team has been great to work with!</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://docs.mindsdb.com/" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7e03b75b7d224f9b986f4_adam.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Adam Carrigan</div><div class="text-size-small">Co-founder, MindsDB</div></div></div></div><div>My team loves Mintlify! Great product and a super supportive team.</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://docs.browserbase.com/" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7e07dcb70bd89e8d34e13_charly.jpeg" alt="" sizes="48px" srcset="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7e07dcb70bd89e8d34e13_charly-p-500.jpeg 500w, https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f7e07dcb70bd89e8d34e13_charly.jpeg 512w" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Charly Poly</div><div class="text-size-small">Developer Marketing, Browserbase</div></div></div></div><div>Why spend a week coding your own documentation (and optimizing it for SEO, design, etc.) while Mintlify brings you the best in class documentation in a few minutes? Worked on documentation for years, in unicorns and open source and I&#x27;m sold!</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://twitter.com/coneill_dev/status/1726637446476247313" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f8cf90cf9938934f207894_chris.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Christopher O&#x27;Neill</div><div class="text-size-small">Head of Developer Success Stytch</div></div></div></div><div>@mintlify is by far the best off the shelf solution imo. Other options also good but not as good.</div></a></div><div role="listitem" class="test-item w-dyn-item"><a href="https://docs.elementary-data.com" target="_blank" class="testimonial_card w-inline-block"><div class="margin-bottom margin-small"><div class="testimonial_client"><div class="testimonial_client-image-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/66f29fc1a009998749da917b/66f8cfabb96e685709cc0280_maayan.jpeg" alt="" class="testimonial_customer-image"/></div><div class="testimonial18_client-info"><div class="text-weight-semibold text-color-primary">Maayan Salom</div><div class="text-size-small">Co-founder Elementary</div></div></div></div><div>Mintlify is amazing for us! Even as a small team we struggled to keep up with dev and update the docs on changes. Now the docs are managed as code and are part of the dev process and PR. As an open source project - moving the docs to the repo (with zero effort) also enabled our community to help us maintain and fix problems as contributors. Our devs and our users love it.</div></a></div></div></div></div><div class="w-layout-hflex bottom-wrap"><div class="button-group is-center"><a href="/love" class="button w-button">See our Wall of Love</a><link rel="prefetch" href="/love"/></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-small"><div class="align-center max-width-medium"><h1 class="heading-style-h3 text-align-center"><span class="text-style-muted">Enabling next-gen teams to</span> communicate world-class products</h1></div></div><div class="filter-wrapper w-form"><form id="email-form" name="email-form" data-name="Email Form" method="get" fs-cmsfilter-element="filters" class="filters" data-wf-page-id="66f2d00ab0645a18b1b85ff7" data-wf-element-id="6f1710b4-c1fd-e4eb-dfaa-8f7f25d730a4"><label class="fs-radio_field-1 w-radio"><div class="icon-flex fs-radio_icon-1 w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5945_9173)"> <path d="M7.56641 9.46528H9.09796L9.43129 7.6875H7.89974L7.56641 9.46528Z" fill="currentColor"/> <path d="M8.49978 1.46533C4.57889 1.46533 1.38867 4.65555 1.38867 8.57644C1.38867 12.4973 4.57889 15.6876 8.49978 15.6876C12.4207 15.6876 15.6109 12.4973 15.6109 8.57644C15.6109 4.65555 12.4207 1.46533 8.49978 1.46533ZM12.0553 7.68755H10.7896L10.4562 9.46533H11.3887C11.7567 9.46533 12.0553 9.764 12.0553 10.132C12.0553 10.5 11.7567 10.7987 11.3887 10.7987H10.2056L9.93267 12.2547C9.87312 12.5747 9.59223 12.7987 9.27845 12.7987C9.23756 12.7987 9.19578 12.7951 9.15401 12.7871C8.79312 12.7187 8.55401 12.3711 8.62156 12.0093L8.84823 10.7987H7.31578L7.04289 12.2547C6.98334 12.5747 6.70245 12.7987 6.38867 12.7987C6.34778 12.7987 6.30601 12.7951 6.26423 12.7871C5.90334 12.7187 5.66423 12.3711 5.73178 12.0093L5.95845 10.7987H4.94245C4.57445 10.7987 4.27578 10.5 4.27578 10.132C4.27578 9.764 4.57445 9.46533 4.94245 9.46533H6.20823L6.54156 7.68755H5.60912C5.24112 7.68755 4.94245 7.38889 4.94245 7.02089C4.94245 6.65289 5.24112 6.35422 5.60912 6.35422H6.79223L7.06512 4.89822C7.13267 4.53644 7.47845 4.29467 7.84378 4.36578C8.20467 4.43422 8.44378 4.78178 8.37623 5.14355L8.14956 6.35422H9.68201L9.95489 4.89822C10.0216 4.53644 10.3691 4.29467 10.7336 4.36578C11.0944 4.43422 11.3336 4.78178 11.266 5.14355L11.0393 6.35422H12.0553C12.4233 6.35422 12.722 6.65289 12.722 7.02089C12.722 7.38889 12.4233 7.68755 12.0553 7.68755Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5945_9173"> <rect width="16" height="16" fill="white" transform="translate(0.5 0.576416)"/> </clipPath> </defs> </svg></div><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input w--redirected-checked"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" checked="" value="Radio A"/><span fs-cmsfilter-element="clear" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">All</span></label><div class="ct-filter-wrap w-dyn-list"><div role="list" class="ct-filters w-dyn-items"><div role="listitem" class="w-dyn-item"><label class="fs-radio_field-1 w-radio"><img class="fs-radio_icon-1 theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" value="Radio A"/><span fs-cmsfilter-field="category" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">AI</span></label></div><div role="listitem" class="w-dyn-item"><label class="fs-radio_field-1 w-radio"><img class="fs-radio_icon-1 theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" value="Radio A"/><span fs-cmsfilter-field="category" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">Devtool</span></label></div><div role="listitem" class="w-dyn-item"><label class="fs-radio_field-1 w-radio"><img class="fs-radio_icon-1 theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" value="Radio A"/><span fs-cmsfilter-field="category" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">SaaS</span></label></div><div role="listitem" class="w-dyn-item"><label class="fs-radio_field-1 w-radio"><img class="fs-radio_icon-1 theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" value="Radio A"/><span fs-cmsfilter-field="category" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">Consumer</span></label></div><div role="listitem" class="w-dyn-item"><label class="fs-radio_field-1 w-radio"><img class="fs-radio_icon-1 theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div class="w-form-formradioinput w-form-formradioinput--inputType-custom fs-radio_button-1 w-radio-input"></div><input type="radio" name="Radio-1" id="Radio-A" data-name="Radio 1" style="opacity:0;position:absolute;z-index:-1" value="Radio A"/><span fs-cmsfilter-field="category" fs-cmsfilter-active="is-active" class="fs-radio_label-1 w-form-label" for="Radio-A">Fintech</span></label></div></div></div></form><div class="w-form-done"><div>Thank you! Your submission has been received!</div></div><div class="w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div><div class="padding-section-medium padding-0"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730bb-b1b85ff7" class="max-width-full w-dyn-list"><div fs-cmsfilter-element="list" role="list" class="_2x2-grid max-width-full more-stories w-dyn-items"><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Goody%20full%20logo%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Goody%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Goody%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Goody%20full%20logo%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Why Goody partnered with Mintlify to create Stripe-level documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/goody" target="_blank" class="cover-btn w-button"></a><a href="http://ongoody.com" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="http://developer.ongoody.com" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Flatfile%20Logo%20Full%20%20-%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Flatfile%20Logo%20Full%20%20-%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Flatfile%20Logo%20Full%20%20-%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Flatfile%20Logo%20Full%20%20-%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Flatfile upgraded their developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/flatfile" target="_blank" class="cover-btn w-button"></a><a href="https://flatfile.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://flatfile.com/docs" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/pinecone%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/pinecone%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/pinecone%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/pinecone%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Pinecone unifies their support ecosystem with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/pinecone" target="_blank" class="cover-btn w-button"></a><a href="https://pinecone.io/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://docs.pinecone.io/" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Dub%20Logo%20Full%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/Dub%20Logo%20Full%20DArk.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Dub%20Logo%20Full%20DArk.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/Dub%20Logo%20Full%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Dub scales support for 48,000+ customers with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/dub" target="_blank" class="cover-btn w-button"></a><a href="https://dub.co/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://dub.co/docs" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/resend%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/resend%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/resend%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/resend%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Why Resend partners with Mintlify to create world-class documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/resend" target="_blank" class="cover-btn w-button"></a><a href="https://resend.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://resend.com/docs" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/loops%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/loops%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/loops%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/loops%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Loops optimizes its API docs with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/loops" target="_blank" class="cover-btn w-button"></a><a href="https://loops.so" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="http://mintlify.com/customers/loops" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/eleven%20labs%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/eleven%20labs%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/eleven%20labs%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/eleven%20labs%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How ElevenLabs streamlines developer onboarding with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/elevenlabs" target="_blank" class="cover-btn w-button"></a><a href="https://elevenlabs.io" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://elevenlabs.io/docs" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/fidelity%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/fidelity%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/fidelity%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/fidelity%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Fidelity levels up financial documentation with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/fidelity-investment" target="_blank" class="cover-btn w-button"></a><a href="https://www.fidelity.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.fidelity.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/cursor%20%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/cursor%20%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/cursor%20%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/cursor%20%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Cursor leverages Mintlify to simplify documentation management</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/cursor" target="_blank" class="cover-btn w-button"></a><a href="https://www.cursor.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://docs.cursor.com/get-started/migrate-from-vscode" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/scale%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/scale%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/scale%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/scale%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Scale AI uses Mintlify for interactive API documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/scale" target="_blank" class="cover-btn w-button"></a><a href="https://scale.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://scale.com/docs" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/perplexity%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/perplexity%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/perplexity%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/perplexity%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Perplexity leverages Mintlify for interactive documentation</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/perplexity" target="_blank" class="cover-btn w-button"></a><a href="https://www.perplexity.ai/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://docs.perplexity.ai/home" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/anthropic%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/anthropic%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/anthropic%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/anthropic%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Anthropic provides a better developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/anthropic" target="_blank" class="cover-btn w-button"></a><a href="https://www.anthropic.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://docs.anthropic.com/en/home" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/cerebras%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/cerebras%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/cerebras%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/cerebras%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The world鈥檚 fastest inference. 20x faster than GPUs, 1/5 the cost.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/cerebras" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://cerebras.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Straiker%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Straiker%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Straiker%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Straiker%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Security for the AI Era</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/straiker" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.straiker.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Nixtla%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Nixtla%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Nixtla%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Nixtla%20Light.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">A future for everybody. Time series research and deployment.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/nixtla" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.nixtla.io/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/embed%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/embed%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/embed%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/embed%20Light.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Personalizing LLM Responses</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/embedchain" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://embedchain.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Stedi%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Stedi%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Stedi%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Stedi%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The only API-first clearinghouse</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/stedi" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.stedi.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/zapier%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos/zapier%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/zapier%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos/zapier%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Automate without limits</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/zapier" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://zapier.com/" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://docs.zapier.com/platform/home" target="_blank" class="cover-btn w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/galileo%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Galileo%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Galileo%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/galileo%20Light.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Evaluate, observe, and protect your GenAI applications</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/galileo" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.rungalileo.io/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Activepieces%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Activepieces%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Activepieces%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Activepieces%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">AI-first automation for every team</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/activepieces" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.activepieces.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/HoneyDrew%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/HoneyDrew%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/HoneyDrew%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/HoneyDrew%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The only semantic layer native to Snowflake.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/honeydrew" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://honeydew.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Foreworks%20AI%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Foreworks%20AI%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Foreworks%20AI%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Foreworks%20AI%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The fastest and most efficient inference engine to build production-ready, compound AI systems.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/fireworks-ai" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://fireworks.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aporia%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aporia%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aporia%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aporia%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/sparkle-3%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">AI</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Aporia provides state-of-the-art Guardrails and Observability for any AI workload.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/aporia" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.aporia.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ShipBob%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ShipBob%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ShipBob%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ShipBob%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The #1 ecommerce fulfillment solution</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/shipbob" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.shipbob.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Light.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Optimize your home health operations</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/axle-health" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.axlehealth.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Buildify%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Buildify%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Buildify%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Buildify%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Canada鈥檚 #1 New Development Listing Service</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/buildify" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.getbuildify.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Smartcar%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Smartcar%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Smartcar%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Smartcar%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Easiest way to integrate apps with cars</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/smartcar" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://smartcar.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/homebot%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/homebot%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/homebot%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/homebot%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Maximize your repeat and referral business by empowering your clients to build wealth through homeownership.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/homebot" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://homebot.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Volteras%20DarkNS.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Volteras%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Volteras%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Volteras%20DarkNS.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">One API Endless innovation</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/volteras" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://volteras.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sure%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sure%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sure%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sure%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The complete digital insurance solution for quoting.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/sure" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.sureapp.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Opus%20Clip%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Opus%20Clip%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Opus%20Clip%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Opus%20Clip%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">1 long video, 10 viral clips. Create 10x faster.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/opus-clip" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.opus.pro/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Primev%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Primev%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Primev%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Primev%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Primev links MEV actors together to unlock efficiencies and expand the capabilities of the current PBS pipeline.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/primev" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://primev.xyz/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Argil%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Argil%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Argil%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Argil%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Get a perfect video for social media of you or a generic avatar in 2 minutes</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/argil" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.argil.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axle%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/circle-user-sparkle%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Consumer</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Automate insurance verification with Axle鈥檚 universal API for insurance.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/axle" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.axle.insure/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Datafold%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Datafold%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Datafold%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Datafold%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The unified platform for proactive data quality</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/datafold" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.datafold.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dynamic%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dynamic%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dynamic%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dynamic%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Craft magical onchain experiences.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/dynamic" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.dynamic.xyz/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/TriggerDev%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/TriggerDev%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/TriggerDev%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/TriggerDev%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Open source background jobs with no timeouts</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/trigger-dev" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://trigger.dev/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Novu%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Novu%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Novu%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Novu%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Robust and flexible notification building blocks</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/novu" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://novu.co/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Upstash%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Upstash%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Upstash%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Upstash%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Serverless Data Platform</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/upstash" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://upstash.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Unkey%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Unkey%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Unkey%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Unkey%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Build better APIs faster</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/unkey" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.unkey.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Syndicate%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Syndicate%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Syndicate%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Syndicate%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Easily build onchain products at scale</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/syndicate" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://syndicate.io/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hypermode%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hypermode%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hypermode%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hypermode%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The open platform for developers who launch real-time AI features in days.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/hypermode" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://hypermode.com/home" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vapi%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vapi%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vapi%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vapi%20Light.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Vapi lets developers build, test and deploy voice agents in minutes rather than months.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/vapi" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://vapi.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Intuned%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Intuned%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Intuned%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Intuned%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The browser automation platform for developers and product teams</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/intuned" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://intunedhq.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aptible%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aptible%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aptible%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Aptible%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Cloud infrastructure that鈥檚 always compliant </div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/aptible" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://aptible.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Doppler%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Doppler%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Doppler%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Doppler%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Centralized Secrets Management Without the Chaos</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/doppler" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.doppler.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sensible%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sensible%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sensible%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Sensible%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Document Processing for Developers</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/sensible" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.sensible.so/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Oxla%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Oxla%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Oxla%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Oxla%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">World鈥檚 fastest distributed database</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/oxla" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://oxla.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/WunderGraph%20Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/WunderGraph%20Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/WunderGraph%20Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/WunderGraph%20Light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/square-terminal%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Devtool</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The Open-Source GraphQL Federation Solution</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/wundergraph" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://wundergraph.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/finch%20%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/finch%20%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/finch%20%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/finch%20%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The #1 API for Employment Systems</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/finch" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.tryfinch.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/sardine%20full%20logo%20-%20light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/sardine%20full%20logo%20-%20dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/sardine%20full%20logo%20-%20dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/sardine%20full%20logo%20-%20light.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The smartest platform for Fraud prevention</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/sardine" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.sardine.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Lago%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Lago%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Lago%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Lago%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Lago offers a self-hosted and cloud, scalable and modular architecture for metering and usage-based billing, at every stage of your company.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/lago" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://getlago.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dopp%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dopp%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dopp%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Dopp%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The DeFi-native layer for Crypto Options</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/dopp" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.dopp.finance/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mango%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mango%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mango%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mango%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Pay-in to payout and everything in between</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/mangopay" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://mangopay.com/en-gb" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Cobo%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Cobo%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Cobo%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Cobo%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The trusted digital asset wallet platform</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/cobo" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.cobo.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/method%20Dark.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Method%20Light.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Method%20Light.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/method%20Dark.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The easiest way to 鈥峷erify your users&#x27; debts.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/method" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://methodfi.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hyperline%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hyperline%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hyperline%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Hyperline%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Seamless billing from quote to cash</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/hyperline" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.hyperline.co/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Solid%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Solid%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Solid%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Solid%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Powering a New Era of Embedded FinTech Innovation</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/solid" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.solidfi.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Salesbrick%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Salesbrick%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Salesbrick%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Salesbrick%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">B2B sales that&#x27;s B2C easy.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/salesbricks" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.salesbricks.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Luxalgo%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Luxalgo%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Luxalgo%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Luxalgo%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Supercharge your trading strategy</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/luxalgo" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.luxalgo.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/FlowX%20Dark.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/FlowX%20Light.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/FlowX%20Light.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/FlowX%20Dark.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">AI for Financial Services Modernization</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/flowx" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.flowx.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Ava%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Ava%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Ava%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Ava%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Digitize All The World鈥檚 Assets.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/ava-labs" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.avalabs.org/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Skip%20dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Skip%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Skip%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Skip%20dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">we build tools for sovereign communities</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/skip" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.skip.build/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fractal%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fractal%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fractal%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fractal%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Are you making money from payments?</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/fractal" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.fractalpay.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mesh%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mesh%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mesh%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Mesh%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Crypto connectivity reimagined</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/mesh" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.meshconnect.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/CashFree%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/CashFree%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/CashFree%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/CashFree%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Payments infrastructure for India</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/cashfree-payments" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.cashfree.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Payabli%20Dark.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Payabli%20Light.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Payabli%20Light.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Payabli%20Dark.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">Fintech</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">If you鈥檙e a Software Company, you鈥檙e a Payments Company.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/payabli" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.payabli.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/Plain/wordmark_black.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/Plain/wordmark_white.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/Plain/wordmark_white.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/Plain/wordmark_black.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Why Plain migrated from Docusaurus to Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/plain" target="_blank" class="cover-btn w-button"></a><a href="https://plain.com" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.plain.com/docs/quickstart" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/micro1%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/mico1%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/mico1%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/micro1%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">AI Recruiter to hire top global talent</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/micro1" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.micro1.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/captive8%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/captive8%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/captive8%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/captive8%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">End to End Influencer Marketing</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/captiv8" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://captiv8.io/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Workflow%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Workflow%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Workflow%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Workflow%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The simplest way to manage creative work</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/workflow-design" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.workflow.design/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/OpenPhone%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/OpenPhone%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/OpenPhone%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/OpenPhone%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The best phone system for teams</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/open-phone" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.openphone.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axiom%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axiom%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axiom%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Axiom%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Stop sampling, observe every event.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/axiom" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://axiom.co/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ionq%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ionq%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ionq%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ionq%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The future is quantum.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/ionq" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://ionq.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fabric%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fabric%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fabric%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Fabric%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The Modern Way to Commerce</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/fabric" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://fabric.inc/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ai%20squared%20dark.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ai%20squared%20light.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ai%20squared%20light.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ai%20squared%20dark.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Accelerate the Delivery of Data and AI Insights into Your Business Applications</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/ai-squared" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://squared.ai/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/unify%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/unify%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/unify%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/unify%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The future of warm outbound pipeline generation AI and sales go-to-market</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/unify" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.unifygtm.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Velt%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Velt%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Velt%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Velt%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Boost product engagement &amp; growth</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/velt" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://velt.dev/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Inkeep%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Inkeep%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Inkeep%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Inkeep%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">AI support you can actually trust.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/inkeep" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://inkeep.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Quill%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Quill%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Quill%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Quill%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Add dashboards to your app</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/quill" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://quill.co/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Pylon%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/pylon%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/pylon%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Pylon%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">The support system for B2B companies.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/pylon" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://usepylon.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/insfiscal%20Dark.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/insfiscal%20Light.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/insfiscal%20Light.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/insfiscal%20Dark.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Open Source Secret Management</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/infisical" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://infisical.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vital%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vital%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vital%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/Vital%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">One API, all health data.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/vital" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://www.tryvital.com/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ProjectDiscovery%20Dark.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ProjectDiscovery%20Light.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ProjectDiscovery%20Light.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20logos%20v2/ProjectDiscovery%20Dark.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Monitor your infrastructure. Real vulnerabilities. Zero noise.</div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/project-discovery" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://projectdiscovery.io/" target="_blank" class="cover-btn w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/light%20mode.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/dark%20mode.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/dark%20mode.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/frigade/light%20mode.png" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">How Frigade provides a world-class developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/frigade" target="_blank" class="cover-btn w-button"></a><a href="https://frigade.com" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="https://mintlify.com/customers/frigade" target="_blank" class="cover-btn w-condition-invisible w-button"></a></div></div><div role="listitem" class="w-dyn-item"><div id="w-node-_6f1710b4-c1fd-e4eb-dfaa-8f7f25d730be-b1b85ff7" class="swiper-slide customer-story-item"><div class="full-logo-container flex-full"><img class="theme-asset story-cards-logo" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc424e8b951c23fbf2f9a1_company-logo.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20dark%20mode.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso%20-%20dark%20mode.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/turso/turso.svg" loading="lazy"/><div class="w-layout-hflex excerpt-block float-absolute"><img class="excerpt-icon theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f2c29e9ce07e7d145c0be4_device-mockup%201.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201-dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/customer%20stories/customer%20category%20icons/device-mockup%201.svg" loading="lazy"/><div fs-cmsfilter-field="category">SaaS</div></div></div><div class="story-card-inner-flex"><div class="text-style-2lines">Up-leveling Turso鈥檚 developer experience with Mintlify</div><div class="w-layout-hflex blog-card-cta"><div>Read story</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit doc</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div><div class="w-layout-hflex blog-card-cta w-condition-invisible"><div>Visit website</div><div class="icon-flex w-embed"><svg width="12" height="12" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5730_51222)"> <path d="M4.33334 2.78644L8.50001 6.9531L4.33334 11.1198" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_5730_51222"> <rect width="12" height="12" fill="white" transform="translate(0 0.953125)"/> </clipPath> </defs> </svg></div></div></div><a href="/customers/turso" target="_blank" class="cover-btn w-button"></a><a href="https://turso.tech" target="_blank" class="cover-btn w-condition-invisible w-button"></a><a href="#" class="cover-btn w-condition-invisible w-button"></a></div></div></div></div></div></div></div></section><section class="cta gradient1"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="section-divider margin-bottom margin-xxlarge"><div class="divider-inner-line"></div></div><div class="margin-bottom margin-xxlarge"><div class="text-align-center"><div class="max-width-medium align-center"><h1 blocks-non-deletable="true" class="heading-style-h2">The documentation you want, available today</h1></div><div class="margin-top margin-large"><div class="button-group is-center"><a href="https://dashboard.mintlify.com/signup" class="button w-button">Get started</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary w-button">Get a demo</a></div></div></div></div></div><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f29d9b066343224a22e4b1_footer%20CTA%20-%20updated%201.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/footer%20CTA%20-%20updated%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/Footer%20CTA%20Updated%201%20-%20dark.svg" alt="" class="cta-illust theme-asset hide-mobile-portrait"/><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed32d350cf8baabd44e39f_mobile%20illust.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile-dark.png" alt="" class="cta-illust theme-asset mobile-only"/></div></div></section></main><footer class="footer"><div class="padding-global"><div class="container-large lines"><div class="padding-section-medium"><div class="padding-bottom padding-section-medium"><div class="w-layout-grid footer_top-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a442-3cb3a43c" class="footer_left-wrapper"><a href="#" aria-label="Footer link" class="footer_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="110" height="24" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><div class="w-layout-grid footer_social-list"><a aria-label="social twitter" href="https://x.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_704)"> <path d="M12.0125 8.75562L17.9319 1.875H16.5294L11.3894 7.84938L7.28436 1.875H2.54999L8.75749 10.9094L2.54999 18.125H3.95249L9.37999 11.8156L13.715 18.125H18.45L12.0125 8.75562ZM10.0912 10.9888L9.46249 10.0894L4.45811 2.93125H6.61249L10.6512 8.70812L11.28 9.6075L16.53 17.1169H14.3756L10.0919 10.9894L10.0912 10.9888Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_704"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social twitter" id="w-node-_2a678e1a-5e6c-fcb8-46d2-53b52fe4bc65-3cb3a43c" href="https://www.linkedin.com/company/mintlify/" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.854 11.5719V18.8895H7.46094V6.24477H10.6617L10.7183 9.40031H10.5147C10.8465 8.34469 11.3479 7.53036 12.0189 6.95731C12.6976 6.37672 13.5722 6.08643 14.6429 6.08643C15.5176 6.08643 16.2791 6.2787 16.9276 6.66324C17.5835 7.04025 18.0887 7.58691 18.4431 8.30322C18.805 9.01199 18.986 9.86026 18.986 10.848V18.8895H15.593V11.4361C15.593 10.652 15.3894 10.0374 14.9822 9.59258C14.5826 9.14771 14.0246 8.92528 13.3083 8.92528C12.8333 8.92528 12.4073 9.03084 12.0303 9.24197C11.6608 9.44555 11.3705 9.74338 11.1594 10.1355C10.9558 10.5276 10.854 11.0064 10.854 11.5719Z" fill="currentColor"/> <path d="M1.1725 18.89V6.24517H4.56556V18.89H1.1725ZM2.86903 4.59389C2.3563 4.59389 1.91897 4.42423 1.55705 4.08493C1.19512 3.74562 1.01416 3.33469 1.01416 2.85212C1.01416 2.36955 1.19512 1.95862 1.55705 1.61931C1.91897 1.28 2.3563 1.11035 2.86903 1.11035C3.38176 1.11035 3.81908 1.28 4.18101 1.61931C4.55048 1.95107 4.73521 2.36201 4.73521 2.85212C4.73521 3.33469 4.55048 3.74562 4.18101 4.08493C3.81908 4.42423 3.38176 4.59389 2.86903 4.59389Z" fill="currentColor"/> </svg></div></a><a aria-label="social github" href="https://github.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_683)"> <path d="M10.5 1.46547C15.3344 1.46547 19.25 5.38109 19.25 10.2155C19.2488 13.9748 16.8506 17.3148 13.2894 18.5167C12.8519 18.6042 12.6875 18.3305 12.6875 18.1011C12.6875 17.8055 12.6988 16.8648 12.6988 15.6948C12.6988 14.8748 12.4256 14.3498 12.1081 14.0761C14.055 13.8573 16.1006 13.1136 16.1006 9.75609C16.1006 8.79359 15.7613 8.01672 15.2038 7.40484C15.2913 7.18609 15.5975 6.28922 15.1163 5.08609C15.1163 5.08609 14.3831 4.84547 12.71 5.98297C12.01 5.78609 11.2663 5.68797 10.5225 5.68797C9.77875 5.68797 9.035 5.78609 8.335 5.98297C6.66188 4.85672 5.92875 5.08609 5.92875 5.08609C5.4475 6.28922 5.75375 7.18609 5.84125 7.40484C5.28375 8.01734 4.94438 8.80484 4.94438 9.75609C4.94438 13.103 6.97875 13.858 8.92563 14.0767C8.67375 14.2955 8.44438 14.6786 8.3675 15.2467C7.86438 15.4767 6.60625 15.8486 5.81938 14.5248C5.655 14.2623 5.16313 13.6173 4.47438 13.628C3.74125 13.6392 4.17938 14.0436 4.485 14.2073C4.85688 14.4148 5.28313 15.1917 5.38188 15.4436C5.55688 15.9355 6.12563 16.8767 8.32375 16.4717C8.32375 17.2048 8.335 17.8936 8.335 18.1011C8.335 18.3311 8.17063 18.593 7.73313 18.5167C4.15875 17.3267 1.74813 13.9823 1.75 10.2148C1.75 5.38047 5.66563 1.46547 10.5 1.46547Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_683"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social slack community" href="https://mintlify.com/community" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_723)"> <path d="M5.78948 12.1385C5.78948 13.0779 5.02198 13.8454 4.08261 13.8454C3.14323 13.8454 2.37573 13.0779 2.37573 12.1385C2.37573 11.1991 3.14323 10.4316 4.08261 10.4316H5.78948V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M6.64954 12.1385C6.64954 11.1991 7.41704 10.4316 8.35641 10.4316C9.29579 10.4316 10.0633 11.1991 10.0633 12.1385V16.4129C10.0633 17.3523 9.29579 18.1198 8.35641 18.1198C7.41704 18.1198 6.64954 17.3523 6.64954 16.4129V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35641 5.2868C7.41704 5.2868 6.64954 4.5193 6.64954 3.57992C6.64954 2.64055 7.41704 1.87305 8.35641 1.87305C9.29579 1.87305 10.0633 2.64055 10.0633 3.57992V5.2868H8.35641Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35637 6.14453C9.29575 6.14453 10.0632 6.91203 10.0632 7.85141C10.0632 8.79078 9.29575 9.55828 8.35637 9.55828H4.082C3.14262 9.55828 2.37512 8.79078 2.37512 7.85141C2.37512 6.91203 3.14262 6.14453 4.082 6.14453H8.35637Z" fill="currentcolor" fill-opacity="1"/> <path d="M15.2107 7.85141C15.2107 6.91203 15.9782 6.14453 16.9176 6.14453C17.8569 6.14453 18.6244 6.91203 18.6244 7.85141C18.6244 8.79078 17.8569 9.55828 16.9176 9.55828H15.2107V7.85141Z" fill="currentcolor" fill-opacity="1"/> <path d="M14.3508 7.85234C14.3508 8.79172 13.5833 9.55922 12.6439 9.55922C11.7045 9.55922 10.937 8.79172 10.937 7.85234V3.57797C10.937 2.63859 11.7045 1.87109 12.6439 1.87109C13.5833 1.87109 14.3508 2.63859 14.3508 3.57797V7.85234Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 14.707C13.5833 14.707 14.3508 15.4745 14.3508 16.4139C14.3508 17.3533 13.5833 18.1208 12.6439 18.1208C11.7045 18.1208 10.937 17.3533 10.937 16.4139V14.707H12.6439Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 13.8454C11.7045 13.8454 10.937 13.0779 10.937 12.1385C10.937 11.1991 11.7045 10.4316 12.6439 10.4316H16.9183C17.8576 10.4316 18.6251 11.1991 18.6251 12.1385C18.6251 13.0779 17.8576 13.8454 16.9183 13.8454H12.6439Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_723"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a></div></div><div class="w-layout-grid footer_menu-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a45c-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Documentation</p><a href="https://mintlify.com/docs/" class="footer_link">Getting Started</a><a href="https://mintlify.com/docs/content/components" class="footer_link">Components</a><a href="https://mintlify.com/docs/api-playground/" class="footer_link">API playground</a><a href="/pricing" class="footer_link">Pricing</a><link rel="prefetch" href="/pricing"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a465-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Resources</p><a href="/customers" aria-current="page" class="footer_link w--current">Customers</a><link rel="prefetch" href="/customers"/><a href="/enterprise" class="footer_link">Enterprise</a><link rel="prefetch" href="/enterprise"/><a href="/preview" class="footer_link">Request Preview</a><link rel="prefetch" href="/preview"/><a href="https://mintlify.com/docs/integrations/analytics/overview" class="footer_link">Integrations</a><a href="https://github.com/mintlify/themes" target="_blank" class="footer_link">Templates</a><a href="/love" class="footer_link">Wall of Love</a><link rel="prefetch" href="/love"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a470-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Company</p><a href="/careers" class="footer_link">Careers</a><a href="/blog" class="footer_link">Blog</a><link rel="prefetch" href="/blog"/><a href="https://feedback.mintlify.com/roadmap" class="footer_link">Public Roadmap</a><a href="https://mintlify.com/security/responsible-disclosure" class="footer_link">Security</a></div><div id="w-node-bb4edd60-b98b-a009-1d55-2aebeaf325d3-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Legal</p><a href="https://mintlify.com/legal/privacy" class="footer_link">Privacy Policy</a><a href="https://mintlify.com/legal/terms" class="footer_link">Terms of Service</a></div></div></div></div><div class="padding-section-small padding-0"><div class="footer-bottom"><a id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a47e-3cb3a43c" href="https://status.mintlify.com/" target="_blank" class="status w-inline-block"><div class="status-color"></div><div class="status-text">Status-text</div></a><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a482-3cb3a43c" class="footer_credit-text">漏 <span class="current-year">currentYear</span> Mintlify, Inc.</div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a487-3cb3a43c" class="theme-switch-wrap"><a aria-label="theme light switch" tr-color-light="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48a-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1878)"> <path d="M7 1.4375V2.60417" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 3.31641L10.7124 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.4167 7.85352H12.25" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 12.3916L10.7124 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7 14.2702V13.1035" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 12.3916L3.28775 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.583374 7.85352H1.75004" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 3.31641L3.28775 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.00001 11.1599C8.82562 11.1599 10.3056 9.67999 10.3056 7.85438C10.3056 6.02878 8.82562 4.54883 7.00001 4.54883C5.17441 4.54883 3.69446 6.02878 3.69446 7.85438C3.69446 9.67999 5.17441 11.1599 7.00001 11.1599Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1878"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a><a aria-label="theme dark switch" tr-color-dark="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48c-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1858)"> <path d="M10.1111 9.99267C7.42621 9.99267 5.24999 7.81645 5.24999 5.13156C5.24999 4.08001 5.58676 3.11012 6.15376 2.31445C3.53732 2.8029 1.55554 5.09501 1.55554 7.85379C1.55554 10.968 4.08021 13.4927 7.19443 13.4927C9.8171 13.4927 12.0151 11.6991 12.6459 9.27401C11.907 9.72745 11.0413 9.99267 10.1111 9.99267Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1858"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a></div><div id="w-node-_43bf6cdd-526c-279b-9ac7-86fd5c62ee35-3cb3a43c" class="footer-status w-embed w-script"><script> // Function to fetch and update the status function updateStatus() { fetch('https://status.mintlify.com/proxy/status.mintlify.com/incidents') .then(response => response.json()) .then(data => { const status = data.incidents[0]?.status; let statusText, statusColor; switch (status) { case 'resolved': statusText = 'All systems normal'; statusColor = '#00C853'; break; case 'partial_outage': statusText = 'Partial outage'; statusColor = '#FFD600'; break; case 'full_outage': statusText = 'Full outage'; statusColor = '#D50000'; break; default: statusText = 'Status unavailable'; statusColor = '#9E9E9E'; } // Update the status text const statusTextElement = document.querySelector('.status-text'); if (statusTextElement) { statusTextElement.textContent = statusText; } // Update the status color const statusColorElement = document.querySelector('.status-color'); if (statusColorElement) { statusColorElement.style.backgroundColor = statusColor; statusColorElement.style.outlineColor = `${statusColor}26`; // 26 is 15% opacity in hex } }) .catch(error => { console.error('Error fetching status:', error); }); } // Run the update function when the DOM is fully loaded document.addEventListener('DOMContentLoaded', updateStatus); // Optionally, update the status every 5 minutes setInterval(updateStatus, 300000); </script></div></div></div></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=66cc2bd703ccf308a49a6188" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/js/mintlify-lander.de0eeabc2.js" type="text/javascript"></script><script> document.addEventListener('DOMContentLoaded', function() { const currentYear = new Date().getFullYear(); const elements = document.getElementsByClassName('current-year'); for (let element of elements) { element.textContent = currentYear; } }); </script> <script> document.addEventListener('DOMContentLoaded', () => { const dropdowns = document.querySelectorAll('.dd-menu-wrap'); const glassOverlay = document.querySelector('.glass-bg'); const navbarContainer = document.querySelector('.navbar_container'); function activateDropdownState() { glassOverlay.classList.add('active'); navbarContainer.classList.add('dropdown-active'); } function deactivateDropdownState() { glassOverlay.classList.remove('active'); navbarContainer.classList.remove('dropdown-active'); } dropdowns.forEach(dropdown => { dropdown.addEventListener('mouseenter', activateDropdownState); dropdown.addEventListener('mouseleave', deactivateDropdownState); }); // Handle focus events for accessibility dropdowns.forEach(dropdown => { const focusableElements = dropdown.querySelectorAll('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])'); focusableElements.forEach(element => { element.addEventListener('focus', activateDropdownState); element.addEventListener('blur', (event) => { // Delay deactivation to check if focus moved to another element within the dropdown setTimeout(() => { if (!dropdown.contains(document.activeElement)) { deactivateDropdownState(); } }, 0); }); }); }); }); </script> <!-- LinkedIn Insight Tag --> <script type="text/javascript"> _linkedin_partner_id = "6729188"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6729188&fmt=gif" /> </noscript></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10