
<!doctype html>
<html lang="en">
  <head>
  <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>/* basic theme */
:root {
  --scalar-text-decoration: underline;
  --scalar-text-decoration-hover: underline;
}
.light-mode {
  --scalar-background-1: #fff;
  --scalar-background-2: #f6f6f6;
  --scalar-background-3: #e7e7e7;
  --scalar-background-accent: #8ab4f81f;

  --scalar-color-1: #1b1b1b;
  --scalar-color-2: #757575;
  --scalar-color-3: #8e8e8e;

  --scalar-color-accent: #0099ff;
  --scalar-border-color: #dfdfdf;
}
.dark-mode {
  --scalar-background-1: #0f0f0f;
  --scalar-background-2: #1a1a1a;
  --scalar-background-3: #272727;

  --scalar-color-1: #e7e7e7;
  --scalar-color-2: #a4a4a4;
  --scalar-color-3: #797979;

  --scalar-color-accent: #00aeff;
  --scalar-background-accent: #3ea6ff1f;

  --scalar-border-color: #2d2d2d;
}
/* Document Sidebar */
.light-mode,
.dark-mode {
  --scalar-sidebar-background-1: var(--scalar-background-1);
  --scalar-sidebar-color-1: var(--scalar-color-1);
  --scalar-sidebar-color-2: var(--scalar-color-2);
  --scalar-sidebar-border-color: var(--scalar-border-color);

  --scalar-sidebar-item-hover-background: var(--scalar-background-2);
  --scalar-sidebar-item-hover-color: var(--scalar-sidebar-color-2);

  --scalar-sidebar-item-active-background: var(--scalar-background-2);
  --scalar-sidebar-color-active: var(--scalar-sidebar-color-1);

  --scalar-sidebar-indent-border: var(--scalar-sidebar-border-color);
  --scalar-sidebar-indent-border-hover: var(--scalar-sidebar-border-color);
  --scalar-sidebar-indent-border-active: var(--scalar-sidebar-border-color);

  --scalar-sidebar-search-background: color-mix(in srgb, var(--scalar-background-2), var(--scalar-background-1));
  --scalar-sidebar-search-color: var(--scalar-color-3);
  --scalar-sidebar-search-border-color: var(--scalar-border-color);
}
/* advanced */
.light-mode {
  --scalar-color-green: #069061;
  --scalar-color-red: #ef0006;
  --scalar-color-yellow: #edbe20;
  --scalar-color-blue: #0082d0;
  --scalar-color-orange: #ff5800;
  --scalar-color-purple: #5203d1;

  --scalar-link-color: var(--scalar-color-1);
  --scalar-link-color-hover: var(--scalar-link-color);

  --scalar-button-1: rgba(0, 0, 0, 1);
  --scalar-button-1-hover: rgba(0, 0, 0, 0.8);
  --scalar-button-1-color: rgba(255, 255, 255, 0.9);

  --scalar-tooltip-background: color-mix(in srgb, #1a1a1a, transparent 10%);
  --scalar-tooltip-color: color-mix(in srgb, #fff, transparent 15%);

  --scalar-color-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-color-1) 20%);
  --scalar-color-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-color-1) 20%);

  --scalar-background-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%);
  --scalar-background-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
}
.dark-mode {
  --scalar-color-green: #00b648;
  --scalar-color-red: #dc1b19;
  --scalar-color-yellow: #ffc90d;
  --scalar-color-blue: #4eb3ec;
  --scalar-color-orange: #ff8d4d;
  --scalar-color-purple: #b191f9;

  --scalar-link-color: var(--scalar-color-1);
  --scalar-link-color-hover: var(--scalar-link-color);

  --scalar-button-1: rgba(255, 255, 255, 1);
  --scalar-button-1-hover: rgba(255, 255, 255, 0.9);
  --scalar-button-1-color: black;

  --scalar-tooltip-background: color-mix(in srgb, var(--scalar-background-1), #fff 10%);
  --scalar-tooltip-color: color-mix(in srgb, #fff, transparent 5%);

  --scalar-color-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 20%);

  --scalar-background-alert: color-mix(in srgb, var(--scalar-color-orange), var(--scalar-background-1) 95%);
  --scalar-background-danger: color-mix(in srgb, var(--scalar-color-red), var(--scalar-background-1) 95%);
}
@supports (color: color(display-p3 1 1 1)) {
  .light-mode {
    --scalar-color-accent: color(display-p3 0 0.6 1 / 1);
    --scalar-color-green: color(display-p3 0.023529 0.564706 0.380392 / 1);
    --scalar-color-red: color(display-p3 0.937255 0 0.023529 / 1);
    --scalar-color-yellow: color(display-p3 0.929412 0.745098 0.12549 / 1);
    --scalar-color-blue: color(display-p3 0 0.509804 0.815686 / 1);
    --scalar-color-orange: color(display-p3 1 0.4 0.02);
    --scalar-color-purple: color(display-p3 0.321569 0.011765 0.819608 / 1);
  }
  .dark-mode {
    --scalar-color-accent: color(display-p3 0.07 0.67 1);
    --scalar-color-green: color(display-p3 0 0.713725 0.282353 / 1);
    --scalar-color-red: color(display-p3 0.862745 0.105882 0.098039 / 1);
    --scalar-color-yellow: color(display-p3 1 0.788235 0.05098 / 1);
    --scalar-color-blue: color(display-p3 0.305882 0.701961 0.92549 / 1);
    --scalar-color-orange: color(display-p3 1 0.552941 0.301961 / 1);
    --scalar-color-purple: color(display-p3 0.694118 0.568627 0.976471 / 1);
  }
}
</style>
<title>Introduction</title>
<script src="/landing.js"></script>
<script src="/fathom.js"></script>
<script src="/posthog.js"></script>
<script src="/apollo.js"></script>
<script src="/vector.js"></script>
<script src="https://cdn-cookieyes.com/client_data/3515bc1505967122c1cef7c0f2247082/script.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-0cyfto0S.css">
<link rel="stylesheet" href="/styles.css">
<link rel="preload" href="https://fonts.scalar.com/inter-latin.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="modulepreload" crossorigin href="/assets/preload-helper-D_sPnjeL.js">
<link rel="modulepreload" crossorigin href="/assets/chunk-Dlc7tRH4.js">
<link rel="modulepreload" crossorigin href="/assets/dist-CqCgU78c.js">
<link rel="modulepreload" crossorigin href="/assets/runtime-core.esm-bundler-PYLbD17i.js">
<link rel="modulepreload" crossorigin href="/assets/index.browser-DYMRP_Tr.js">
<link rel="modulepreload" crossorigin href="/assets/add-scalar-classes-O5YaGXBg.js">
<link rel="modulepreload" crossorigin href="/assets/use-display-toc-B_q-vbUA.js">
<link rel="modulepreload" crossorigin href="/assets/dist-Bql-6AFE.js">
<link rel="modulepreload" crossorigin href="/assets/zod-CBM0wx94.js">
<link rel="modulepreload" crossorigin href="/assets/utility-BlGYFgXM.js">
<link rel="modulepreload" crossorigin href="/assets/dist-CBp7jhin.js">
<link rel="modulepreload" crossorigin href="/assets/dist-DmQYIggS.js">
<link rel="modulepreload" crossorigin href="/assets/browser-NcvB-Ht2.js">
<link rel="modulepreload" crossorigin href="/assets/__vite-browser-external-C_iTY3jg.js">
<link rel="modulepreload" crossorigin href="/assets/state-BCwIwoxc.js">
<link rel="modulepreload" crossorigin href="/assets/dist-BLvls1l3.js">
<link rel="modulepreload" crossorigin href="/assets/_plugin-vue_export-helper-DSrzDOgY.js">
<link rel="modulepreload" crossorigin href="/assets/useAgentConfig-fZ4yCBH8.js">
<link rel="modulepreload" crossorigin href="/assets/use-analytics-BYRUqLJU.js">
<link rel="modulepreload" crossorigin href="/assets/dist-DfPTLS6S.js">
<link rel="modulepreload" crossorigin href="/assets/useClipboard-Cloc0jfS.js">
<link rel="modulepreload" crossorigin href="/assets/operation-code-sample-DNhG1ARF.js">
<link rel="modulepreload" crossorigin href="/assets/helpers-DnCRZlKo.js">
<link rel="modulepreload" crossorigin href="/assets/fetch-urls-DW3bYLL8.js">
<link rel="modulepreload" crossorigin href="/assets/ScalarIconSparkle-DGddA6KA.js">
<link rel="modulepreload" crossorigin href="/assets/coerce-DLeAHr6z.js">
<link rel="preload" href="/styles.css" as="style">
<script type="module" crossorigin src="/assets/index-1RWGpzG4.js"></script>
<meta name="description" content="Industry leading Developer Docs, SDKs, API Client & Registry that your APIs deserve.">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow, max-image-preview:large">
<meta name="og:image" content="https://api.scalar.com/cdn/images/IlMnm9Mxy-SabmLxE_i0L/8O99z8O2xzEypGxOzuZYo.png" property="og:image">
<meta content="Scalar - The API Company" property="og:title">
<meta content="Industry leading Developer Docs, SDKs, API Client & Registry that your APIs deserve." property="og:description">
<meta content="Scalar" property="og:site_name">
<meta content="en_US" property="og:locale">
<meta content="website" property="og:type">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Scalar - The API Company">
<meta name="twitter:description" content="Industry leading Developer Docs, SDKs, API Client & Registry that your APIs deserve.">
<meta name="twitter:image" content="https://cdn.scalar.com/images/twitter-image.png">
<meta name="twitter:image:width" content="1200">
<meta name="twitter:image:height" content="630">
<link rel="canonical" href="https://scalar.com">
<link rel="icon" href="/favicon.svg">
<link rel="icon alternate" href="/favicon.png"></head>
  <body class="scalar-app">
    <script>
       try {
          const systemMode = window.matchMedia('(prefers-color-scheme: dark)').matches
            ? 'dark'
            : 'light';

          const configMode = '';
          const savedMode = localStorage.getItem('colorMode');

          // savedMode (user's explicit choice) takes priority over the config default,
          // matching the priority order in useColorMode: localStorage > config > system
          const effectiveConfig = configMode === 'system' ? systemMode : (configMode || systemMode);
          const mode = savedMode || effectiveConfig;

          document.body.classList.add(mode + '-mode');
       } catch {}
    </script>
    <div id="app"><!--[--><div class="section-flare" data-v-5e731497><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div><div class="section-flare-item" data-v-5e731497></div></div><main class="content content-header content-sidebar" data-v-5e731497><div class="page-content" data-v-5e731497 data-v-5e731497><div class="not-found" data-v-ae4dbf19><h1 class="not-found__404" data-v-ae4dbf19>404</h1><h2 class="not-found__title" data-v-ae4dbf19>Page not found</h2><h3 class="not-found__description" data-v-ae4dbf19>We couldn&#39;t find this page.</h3><a href="/" class="not-found__home-link" data-v-ae4dbf19> Return Home </a></div></div><div class="agent-floating agent-floating-layout" data-v-5fd406b9 data-v-5fd406b9 data-v-5e731497><form class="agent-floating-form" data-v-5fd406b9><textarea class="agent-floating-textarea" placeholder="Ask AI a question..." rows="1" data-v-5fd406b9></textarea><div class="agent-floating-actions" data-v-5fd406b9><!----></div></form></div><!----></main><div aria-label="AI Chat" class="agent-chat-panel agent-chat-panel--header" role="complementary" style="" data-v-a66541a3 data-v-5e731497><div class="agent-chat-header" data-v-a66541a3><div class="agent-chat-header-left" data-v-a66541a3><div class="contents" data-v-a66541a3><!--[--><span class="agent-chat-tooltip-trigger" data-v-a66541a3><button aria-disabled="false" type="button" class="scalar-icon-button grid aspect-square cursor-pointer scalar-button-ghost bg-transparent text-c-2 active:text-c-1 hover:text-c-1 size-8 p-2 -outline-offset-2 rounded-lg agent-chat-close hover:bg-b-2 m-0" style="" data-v-a66541a3><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-full" style=""><!--[--><!--]--><g><path d="M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"></path></g></svg><span class="sr-only">Close</span></button></span><!--]--></div><div class="contents" data-v-a66541a3><!--[--><span class="agent-chat-tooltip-trigger agent-chat-expand-btn" data-v-a66541a3><button aria-disabled="false" type="button" class="scalar-icon-button grid aspect-square cursor-pointer scalar-button-ghost bg-transparent text-c-2 active:text-c-1 hover:text-c-1 size-8 p-2 -outline-offset-2 rounded-lg agent-chat-action-btn hover:bg-b-2 m-0" style="" data-v-a66541a3><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-full" style=""><!--[--><!--]--><g><path d="M232,128a8,8,0,0,1-8,8H91.31l58.35,58.34a8,8,0,0,1-11.32,11.32l-72-72a8,8,0,0,1,0-11.32l72-72a8,8,0,0,1,11.32,11.32L91.31,120H224A8,8,0,0,1,232,128ZM40,32a8,8,0,0,0-8,8V216a8,8,0,0,0,16,0V40A8,8,0,0,0,40,32Z"></path></g></svg><span class="sr-only">Expand chat</span></button></span><!--]--></div><!----></div><div class="agent-chat-header-center" data-v-a66541a3><div class="agent-chat-dropdown-area agent-chat-dropdown-area-center" data-v-a66541a3><button class="agent-chat-title" type="button" data-v-a66541a3><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="agent-chat-sparkle" data-v-a66541a3><!--[--><!--]--><g><path d="M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z"></path></g></svg> Ask AI <!----></button><!----></div></div><div class="agent-chat-header-actions" data-v-a66541a3><div class="agent-chat-dropdown-area" data-v-a66541a3><button class="agent-chat-header-btn" type="button" data-v-a66541a3> MCP <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="agent-chat-header-btn-icon" data-v-a66541a3><!--[--><!--]--><g><path d="M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72a8,8,0,0,1,11.32-11.32L120,196.69V40a8,8,0,0,1,16,0V196.69l58.34-58.35a8,8,0,0,1,11.32,11.32Z"></path></g></svg></button><!----></div><!----></div></div><div class="agent-chat-body" data-v-46becdcd data-v-a66541a3><div class="agent-chat-start-layout" data-v-46becdcd data-v-46becdcd><div class="agent-chat-input-container agent-chat-input-container--start" data-v-46becdcd><!----><form class="agent-chat-form" data-v-46becdcd><label class="agentLabel" for="startInput" data-v-46becdcd>Ask a question to get started</label><textarea id="startInput" class="agent-chat-textarea custom-scroll" placeholder="Ask a question..." data-v-46becdcd></textarea><div class="agent-chat-actions" data-v-46becdcd><button class="agent-chat-send" disabled type="submit" data-v-46becdcd><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="agent-chat-send-icon" data-v-46becdcd><!--[--><!--]--><g><path d="M205.66,117.66a8,8,0,0,1-11.32,0L136,59.31V216a8,8,0,0,1-16,0V59.31L61.66,117.66a8,8,0,0,1-11.32-11.32l72-72a8,8,0,0,1,11.32,0l72,72A8,8,0,0,1,205.66,117.66Z"></path></g></svg><span class="sr-only" data-v-46becdcd>Send</span></button></div></form></div></div><!----></div></div><aside class="flex flex-col border-r bg-sidebar-b-1 border-sidebar-border sidebar w-(--scalar-sidebar-width) sidebar-header t-doc__sidebar" style="" data-v-5e9b1fbd data-v-5e731497><!--[--><!----><!----><div class="search-row" data-v-5e9b1fbd><button role="search" type="button" class="flex items-center rounded border text-base h-8 gap-1 pl-2 pr-1 bg-sidebar-b-search border-sidebar-border-search text-sidebar-c-search search search-grow" style="" data-v-5e9b1fbd><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-4"><!--[--><!--]--><g><path d="M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"></path></g></svg><span class="flex-1 text-left leading-none"><!--[-->Search...<!--]--></span><!----></button><button class="ask-ai-sidebar-button" type="button" data-v-5e9b1fbd><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="ask-ai-sidebar-icon" data-v-5e9b1fbd><!--[--><!--]--><g><path d="M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z"></path></g></svg><span data-v-5e9b1fbd>Ask AI</span></button></div><div class="custom-scroll items" data-v-5e9b1fbd><!----><ul class="group/items relative flex flex-col p-(--scalar-sidebar-padding) gap-px transition-transform duration-300 translate-x-0" style="" data-v-5e9b1fbd><!--[--><!--[--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="zfmzbnkw7cvg9evoxoeqaxuli1u5r0e4o4bvt8cm"><!--[--><!--]--><!--[--><button type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[--> Introduction<!--]--><!--]--></div><!--[--><!--]--></button><!--]--><!--[--><!--]--></li><!--]--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="f9v23bu6drctemwwl5s51k55o17eae31c703z9qy"><!--[--><!--]--><!--[--><button type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M200,168a48.05,48.05,0,0,1-48,48H136v16a8,8,0,0,1-16,0V216H104a48.05,48.05,0,0,1-48-48,8,8,0,0,1,16,0,32,32,0,0,0,32,32h48a32,32,0,0,0,0-64H112a48,48,0,0,1,0-96h8V24a8,8,0,0,1,16,0V40h8a48.05,48.05,0,0,1,48,48,8,8,0,0,1-16,0,32,32,0,0,0-32-32H112a32,32,0,0,0,0,64h40A48.05,48.05,0,0,1,200,168Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[--> Pricing<!--]--><!--]--></div><!--[--><!--]--></button><!--]--><!--[--><!--]--></li><!--]--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="ynym70sa1ejy54xnnzu3vqhghcpuug9opldln174"><!--[--><!--]--><!--[--><button type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M224,40V76a8,8,0,0,1-16,0V48H180a8,8,0,0,1,0-16h36A8,8,0,0,1,224,40Zm-8,132a8,8,0,0,0-8,8v28H180a8,8,0,0,0,0,16h36a8,8,0,0,0,8-8V180A8,8,0,0,0,216,172ZM76,208H48V180a8,8,0,0,0-16,0v36a8,8,0,0,0,8,8H76a8,8,0,0,0,0-16ZM40,84a8,8,0,0,0,8-8V48H76a8,8,0,0,0,0-16H40a8,8,0,0,0-8,8V76A8,8,0,0,0,40,84Zm136,92a8,8,0,0,1-6.41-3.19,52,52,0,0,0-83.2,0,8,8,0,1,1-12.8-9.62A67.94,67.94,0,0,1,101,141.51a40,40,0,1,1,53.94,0,67.94,67.94,0,0,1,27.43,21.68A8,8,0,0,1,176,176Zm-48-40a24,24,0,1,0-24-24A24,24,0,0,0,128,136Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[--> Customers<!--]--><!--]--></div><!--[--><!--]--></button><!--]--><!--[--><!--]--></li><!--]--><!--[--><li class="group/item flex flex-col gap-px leading-4" style="" data-sidebar-id="mo3lhyr48ujl28xm20j25wbfndgow1lckgwx7slm"><div class="group/group-button relative flex flex-col text-base"><!--[--><!--]--><!--[--><button aria-selected="false" type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" aria-expanded="false"><!--[--><div class="scalar-sidebar-indent flex justify-center mr-0 -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class="size-4"><path d="M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216ZM172.42,72.84l-64,32a8.05,8.05,0,0,0-3.58,3.58l-32,64A8,8,0,0,0,80,184a8.1,8.1,0,0,0,3.58-.84l64-32a8.05,8.05,0,0,0,3.58-3.58l32-64a8,8,0,0,0-10.74-10.74ZM138,138,97.89,158.11,118,118l40.15-20.07Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Products <!--]--><!--]--></div><!--[--><!--[--><!--]--><!--[--><div class="size-4 flex items-center justify-center transition-transform duration-100 text-sidebar-c-2" style=""><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-3"><!--[--><!--]--><g><path d="M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z"></path></g></svg><!--]--><span class="sr-only"><!--[-->Open Group <!--]--></span></div><!--]--><!--]--></button><!----><!--]--><!--[--><!--]--></div><!----></li><!--]--><!--[--><li class="group/item flex flex-col gap-px leading-4" style="" data-sidebar-id="nyj9x92q4nkc2zaw8qzpb658lwicrmak6srnwl04"><div class="group/group-button relative flex flex-col text-base"><!--[--><!--]--><!--[--><button aria-selected="false" type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" aria-expanded="false"><!--[--><div class="scalar-sidebar-indent flex justify-center mr-0 -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class="size-4"><path d="M215.12,123.64a8,8,0,1,0-14.24-7.28,79.58,79.58,0,0,1-33.08,33.5l-16.58-37.32A40,40,0,0,0,136,40.8V24a8,8,0,0,0-16,0V40.8a40,40,0,0,0-15.22,71.74L56.69,220.75a8,8,0,1,0,14.62,6.5l25.14-56.56A95.48,95.48,0,0,0,128,176a99.13,99.13,0,0,0,31.6-5.21l25.09,56.46a8,8,0,0,0,14.62-6.5l-25-56.25A95.81,95.81,0,0,0,215.12,123.64ZM128,56a24,24,0,1,1-24,24A24,24,0,0,1,128,56Zm0,104a79.52,79.52,0,0,1-25-4l16.42-36.94a39.81,39.81,0,0,0,17.2,0l16.48,37.06A83.21,83.21,0,0,1,128,160Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Tools <!--]--><!--]--></div><!--[--><!--[--><!--]--><!--[--><div class="size-4 flex items-center justify-center transition-transform duration-100 text-sidebar-c-2" style=""><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-3"><!--[--><!--]--><g><path d="M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z"></path></g></svg><!--]--><span class="sr-only"><!--[-->Open Group <!--]--></span></div><!--]--><!--]--></button><!----><!--]--><!--[--><!--]--></div><!----></li><!--]--><!----><!----><!----><!--[--><li class="group/item group/sidebar-section contents" style=""><div class="flex px-2 group/spacer-before h-3" style=""><div class="scalar-sidebar-indent flex justify-center" style="" data-v-3e080c68><!--[--><!--]--></div></div><div aria-selected="false" class="group/button peer/button flex items-stretch rounded p-2 text-sidebar-c-2 no-underline wrap-break-word cursor-auto text-sm/4 py-1.75 font-bold" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><!----><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Resources <!--]--><!--]--></div><!--[--><!--]--></div><ul class="flex flex-col gap-px"><!--[--><!--[--><!--[--><li class="group/item group/nested-items contents" style="--nested-items-offset:0px;"><!--[--><button aria-selected="false" type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" aria-expanded="false" data-sidebar-id="97r0rna2kgflrpitx72egdjnan9tqge8t1fnz9s6"><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class="sidebar-nested__icon"><path d="M229.66,189.66l-32,32a8,8,0,0,1-11.32,0l-32-32a8,8,0,0,1,11.32-11.32L184,196.69V139.31l-56-56-56,56v57.38l18.34-18.35a8,8,0,0,1,11.32,11.32l-32,32a8,8,0,0,1-11.32,0l-32-32a8,8,0,0,1,11.32-11.32L56,196.69V136a8,8,0,0,1,2.34-5.66L120,68.69V24a8,8,0,0,1,16,0V68.69l61.66,61.65A8,8,0,0,1,200,136v60.69l18.34-18.35a8,8,0,0,1,11.32,11.32Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Migration <!--]--><!--]--></div><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-4 text-sidebar-c-2"><!--[--><!--]--><g><path d="M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66Z"></path></g></svg><!--]--><!--]--></button><!--]--><!----></li><!--]--><!--[--><li class="group/item group/nested-items contents" style="--nested-items-offset:0px;"><!--[--><button aria-selected="false" type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" aria-expanded="false" data-sidebar-id="fxpbwwvnmzdew5tvhoseirwlrwuj1wwua63da2ex"><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class="sidebar-nested__icon"><path d="M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm40-104a40,40,0,1,0-65.94,30.44L88.68,172.77A8,8,0,0,0,96,184h64a8,8,0,0,0,7.32-11.23l-13.38-30.33A40.14,40.14,0,0,0,168,112ZM136.68,143l11,25.05H108.27l11-25.05A8,8,0,0,0,116,132.79a24,24,0,1,1,24,0A8,8,0,0,0,136.68,143Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->SSO/SAML <!--]--><!--]--></div><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-4 text-sidebar-c-2"><!--[--><!--]--><g><path d="M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66Z"></path></g></svg><!--]--><!--]--></button><!--]--><!----></li><!--]--><!--[--><li class="group/item flex flex-col gap-px leading-4" style="" data-sidebar-id="7rcx7hxt27yun4rylcw0wtc8lk2ny5yoye9qdp9l"><div class="group/group-button relative flex flex-col text-base"><!--[--><!--]--><!--[--><button aria-selected="false" type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" aria-expanded="false"><!--[--><div class="scalar-sidebar-indent flex justify-center mr-0 -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class="size-4"><path d="M112,152a8,8,0,0,0-8,8v28.69L66.34,151A8,8,0,0,1,64,145.37V95a32,32,0,1,0-16,0v50.38a23.85,23.85,0,0,0,7,17L92.69,200H64a8,8,0,0,0,0,16h48a8,8,0,0,0,8-8V160A8,8,0,0,0,112,152ZM40,64A16,16,0,1,1,56,80,16,16,0,0,1,40,64Zm168,97V110.63a23.85,23.85,0,0,0-7-17L163.31,56H192a8,8,0,0,0,0-16H144a8,8,0,0,0-8,8V96a8,8,0,0,0,16,0V67.31L189.66,105a8,8,0,0,1,2.34,5.66V161a32,32,0,1,0,16,0Zm-8,47a16,16,0,1,1,16-16A16,16,0,0,1,200,208Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Changelog <!--]--><!--]--></div><!--[--><!--[--><!--]--><!--[--><div class="size-4 flex items-center justify-center transition-transform duration-100 text-sidebar-c-2" style=""><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation" class="size-3"><!--[--><!--]--><g><path d="M184.49,136.49l-80,80a12,12,0,0,1-17-17L159,128,87.51,56.49a12,12,0,1,1,17-17l80,80A12,12,0,0,1,184.49,136.49Z"></path></g></svg><!--]--><span class="sr-only"><!--[-->Open Group <!--]--></span></div><!--]--><!--]--></button><!----><!--]--><!--[--><!--]--></div><!----></li><!--]--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="fcp0pl9r61q2l41k5dkjfhhb2tn1a7ko96kwihos"><!--[--><!--]--><!--[--><button type="button" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M88,112a8,8,0,0,1,8-8h80a8,8,0,0,1,0,16H96A8,8,0,0,1,88,112Zm8,40h80a8,8,0,0,0,0-16H96a8,8,0,0,0,0,16ZM232,64V184a24,24,0,0,1-24,24H32A24,24,0,0,1,8,184.11V88a8,8,0,0,1,16,0v96a8,8,0,0,0,16,0V64A16,16,0,0,1,56,48H216A16,16,0,0,1,232,64Zm-16,0H56V184a23.84,23.84,0,0,1-1.37,8H208a8,8,0,0,0,8-8Z"></path></svg><!--]--><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--><!--[--> Blog<!--]--><!--]--></div><!--[--><!--]--></button><!--]--><!--[--><!--]--></li><!--]--><!--]--><!--]--></ul><div class="flex px-2 group/spacer-after h-3" style=""><div class="scalar-sidebar-indent flex justify-center" style="" data-v-3e080c68><!--[--><!--]--></div></div></li><!--]--><!--[--><li class="group/item group/sidebar-section contents" style=""><div class="flex px-2 group/spacer-before h-3" style=""><div class="scalar-sidebar-indent flex justify-center" style="" data-v-3e080c68><!--[--><!--]--></div></div><div aria-selected="false" class="group/button peer/button flex items-stretch rounded p-2 text-sidebar-c-2 no-underline wrap-break-word cursor-auto text-sm/4 py-1.75 font-bold" style=""><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><!----><div class="group/button-label flex-1 min-w-0"><!--[--><!--[-->Support <!--]--><!--]--></div><!--[--><!--]--></div><ul class="flex flex-col gap-px"><!--[--><!--[--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="a1v6bp3d2mwkgrtx735rmavi5zsuvzpcr8efq8u1"><!--[--><!--]--><!--[--><a aria-selected="false" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" href="https://github.com/scalar/scalar" target="_blank"><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M208.31,75.68A59.78,59.78,0,0,0,202.93,28,8,8,0,0,0,196,24a59.75,59.75,0,0,0-48,24H124A59.75,59.75,0,0,0,76,24a8,8,0,0,0-6.93,4,59.78,59.78,0,0,0-5.38,47.68A58.14,58.14,0,0,0,56,104v8a56.06,56.06,0,0,0,48.44,55.47A39.8,39.8,0,0,0,96,192v8H72a24,24,0,0,1-24-24A40,40,0,0,0,8,136a8,8,0,0,0,0,16,24,24,0,0,1,24,24,40,40,0,0,0,40,40H96v16a8,8,0,0,0,16,0V192a24,24,0,0,1,48,0v40a8,8,0,0,0,16,0V192a39.8,39.8,0,0,0-8.44-24.53A56.06,56.06,0,0,0,216,112v-8A58.14,58.14,0,0,0,208.31,75.68ZM200,112a40,40,0,0,1-40,40H112a40,40,0,0,1-40-40v-8a41.74,41.74,0,0,1,6.9-22.48A8,8,0,0,0,80,73.83a43.81,43.81,0,0,1,.79-33.58,43.88,43.88,0,0,1,32.32,20.06A8,8,0,0,0,119.82,64h32.35a8,8,0,0,0,6.74-3.69,43.87,43.87,0,0,1,32.32-20.06A43.81,43.81,0,0,1,192,73.83a8.09,8.09,0,0,0,1,7.65A41.72,41.72,0,0,1,200,104Z"></path></svg><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--> GitHub <!--]--></div><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation"><!--[--><!--]--><g><path d="M200,64V168a8,8,0,0,1-16,0V83.31L69.66,197.66a8,8,0,0,1-11.32-11.32L172.69,72H88a8,8,0,0,1,0-16H192A8,8,0,0,1,200,64Z"></path></g></svg><!--]--></a><!--]--><!--[--><!--]--></li><!--]--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="llpvaizt8irb544zo6u4rscgc3kwqy9kt0vs42hb"><!--[--><!--]--><!--[--><a aria-selected="false" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" href="mailto:support@scalar.com" target="_blank"><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M228.44,89.34l-96-64a8,8,0,0,0-8.88,0l-96,64A8,8,0,0,0,24,96V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V96A8,8,0,0,0,228.44,89.34ZM128,41.61l81.91,54.61-67,47.78H113.11l-67-47.78ZM40,200V111.53l65.9,47a8,8,0,0,0,4.65,1.49h34.9a8,8,0,0,0,4.65-1.49l65.9-47V200Z"></path></svg><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--> Email <!--]--></div><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation"><!--[--><!--]--><g><path d="M200,64V168a8,8,0,0,1-16,0V83.31L69.66,197.66a8,8,0,0,1-11.32-11.32L172.69,72H88a8,8,0,0,1,0-16H192A8,8,0,0,1,200,64Z"></path></g></svg><!--]--></a><!--]--><!--[--><!--]--></li><!--]--><!--[--><li class="group/item flex flex-col text-base sidebar-item" style="" data-sidebar-id="81i5gdkokmdsggom7co8r8k0m33hk007tjifsngt"><!--[--><!--]--><!--[--><a aria-selected="false" class="group/button peer/button flex items-stretch rounded p-2 font-sidebar text-base/4 text-sidebar-c-2 no-underline wrap-break-word hover:bg-sidebar-b-hover hover:text-sidebar-c-hover" style="" href="https://scalar.cal.com/forms/142d1e65-97d2-4d03-94c3-96f98ddef95a" target="_blank"><!--[--><div class="scalar-sidebar-indent flex justify-center -my-2" style="" data-v-3e080c68><!--[--><!--]--></div><!--]--><div class="h-lh *:size-4 mr-1 flex items-center"><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" class=""><path d="M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM96,120a32,32,0,1,1,32,32A32,32,0,0,1,96,120ZM72.57,200a64,64,0,0,1,110.86,0ZM216,200H201.33a80.14,80.14,0,0,0-43.69-42.28,48,48,0,1,0-59.28,0A80.14,80.14,0,0,0,54.67,200H40V56H216V200Z"></path></svg><!--]--></div><div class="group/button-label flex-1 min-w-0"><!--[--> Demo <!--]--></div><!--[--><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor" width="1em" height="1em" aria-hidden="true" role="presentation"><!--[--><!--]--><g><path d="M200,64V168a8,8,0,0,1-16,0V83.31L69.66,197.66a8,8,0,0,1-11.32-11.32L172.69,72H88a8,8,0,0,1,0-16H192A8,8,0,0,1,200,64Z"></path></g></svg><!--]--></a><!--]--><!--[--><!--]--></li><!--]--><!--]--><!--]--></ul><div class="flex px-2 group/spacer-after h-3" style=""><div class="scalar-sidebar-indent flex justify-center" style="" data-v-3e080c68><!--[--><!--]--></div></div></li><!--]--><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!--]--><!--]--></ul></div><div class="flex flex-col gap-3 p-3 border-t" style="" data-v-5e9b1fbd><!--[--><!--]--><div class="flex items-center px-2"><div class="text-sidebar-c-2 flex min-w-0 flex-1 items-center text-sm/5"><!--[--><!----><!--]--></div><!--[--><button aria-pressed="false" type="button" class="group/toggle flex h-6 w-[38px] brightness-lifted -mx-px items-center py-1.5 -my-1.5 relative outline-none" style="" aria-label="Set dark mode"><div class="h-3 w-full bg-border mx-px rounded-xl group-focus-visible/toggle:outline -outline-offset-1"></div><div class="size-[23px] left-border absolute border rounded-full flex items-center justify-center bg-b-1 group-focus-visible/toggle:outline -outline-offset-1 transition-transform duration-300 ease-in-out"><div aria-label="Set dark mode" class="toggle-icon-light size-3 flex items-center justify-center text-c-1" style="" data-v-60be8692><span class="toggle-icon-sun-ray" data-v-60be8692></span><span class="toggle-icon-sun-ray" data-v-60be8692></span><span class="toggle-icon-sun-ray" data-v-60be8692></span><span class="toggle-icon-sun-ray" data-v-60be8692></span><span class="toggle-icon-ellipse" data-v-60be8692><span class="toggle-icon-moon-mask" data-v-60be8692></span></span></div></div></button><!--]--></div></div><!--]--></aside><header class="header t-header" data-v-97d6c2d1 data-v-5e731497><div class="header-left header-left__shrink" data-v-97d6c2d1><button aria-disabled="false" type="button" class="scalar-icon-button grid aspect-square cursor-pointer scalar-button-ghost bg-transparent text-c-2 active:text-c-1 hover:text-c-1 size-8 p-2 m-1 -outline-offset-2 rounded-lg menu-button" style="" data-v-97d6c2d1><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="scalar-icon size-full" style="" aria-hidden="true" role="presentation" data-v-b651bb23><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M22 6.8H2m20 10.4H2"></path></svg><span class="sr-only">Sidebar Menu</span></button><a href="/" data-v-97d6c2d1><!--[--><img alt="logo" class="logo light-logo" src="https://cdn.scalar.com/marketing/landing/logo-light.svg" data-v-84c7470a><img alt="logo" class="logo dark-logo" src="https://cdn.scalar.com/marketing/landing/logo-dark.svg" data-v-84c7470a><!--]--></a><!----></div><!----><div class="header-right" data-v-97d6c2d1><nav class="navigation" data-v-c0bdc4be data-v-97d6c2d1><!--[--><!--[--><a class="group/button flex items-center rounded py-2 text-base/4 no-underline text-c-header-2 hover:text-c-header-1 link link-active link-active-single px-0" style="" href="/" data-v-fee8954b data-v-c0bdc4be><!--[--><!----><!--[-->Home<!--]--><!--]--></a><!--]--><!--[--><a class="group/button flex items-center rounded py-2 text-base/4 no-underline text-c-header-2 hover:text-c-header-1 link px-0" style="" href="/enterprise" data-v-fee8954b data-v-c0bdc4be><!--[--><!----><!--[-->Enterprise<!--]--><!--]--></a><!--]--><!--[--><span class="header-spacer" data-v-c0bdc4be></span><!--]--><!--[--><a class="group/button flex items-center rounded py-2 text-base/4 no-underline text-c-header-2 hover:text-c-header-1 link px-0" style="" href="https://dashboard.scalar.com/login" data-v-fee8954b data-v-c0bdc4be><!--[--><!----><!--[-->Log in<!--]--><!--]--></a><!--]--><!--[--><a class="group/button flex items-center rounded px-3 py-2 no-underline font-bold bg-b-header-cta text-sm/4 text-c-header-cta hover:bg-h-header-cta link link__button" style="" href="https://dashboard.scalar.com/register" data-v-fee8954b data-v-c0bdc4be><!--[--><!----><!--[-->Register<!--]--><!--]--></a><!--]--><!--]--></nav><!----><!----></div></header><!----><div data-v-5e731497></div><!----><!--[--><!----><div hidden style="position:fixed;top:1;left:1;width:1;height:0;padding:0;margin:-1;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0;display:none;"></div><!--]--><!----><!----><!--]--></div>
  </body>
</html>
  