CINXE.COM
Conversations API | Twilio
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"/> <title>Conversations API | Twilio</title> <meta name="description" content="Integrate once and create 1-to-1 or multiparty customer conversations across preferred channels with a single API. Get to market quickly and reach consumers globally with a flexible messaging platform designed for scale"/> <meta name="template" content="base-page"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <meta name="robots" content="index"/> <meta property="og:url" content="https://www.twilio.com/en-us/messaging/conversations-api"/> <meta name="twitter:url" content="https://www.twilio.com/en-us/messaging/conversations-api"/> <script type="module"> window.RUM_BASE = 'https://rum.hlx.page/'; import { sampleRUM } from 'https://rum.hlx.page/.rum/@adobe/helix-rum-js@%5E2/src/index.js'; window.hlx = window.hlx || {}; window.hlx.sampleRUM = sampleRUM; sampleRUM(); </script><link rel="canonical" href="https://www.twilio.com/en-us/messaging/conversations-api"/> <link rel="alternate" href="https://www.twilio.com/en-us/messaging/conversations-api" hreflang="en-us"/> <link rel="alternate" href="https://www.twilio.com/pt-br/messaging/conversations-api" hreflang="pt-br"/> <link rel="alternate" href="https://www.twilio.com/es-mx/messaging/conversations-api" hreflang="es-mx"/> <link rel="alternate" href="https://www.twilio.com/ja-jp/messaging/conversations-api" hreflang="ja-jp"/> <link rel="alternate" href="https://www.twilio.com/fr-fr/messaging/conversations-api" hreflang="fr-fr"/> <link rel="alternate" href="https://www.twilio.com/de-de/messaging/conversations-api" hreflang="de-de"/> <link rel="alternate" href="https://www.twilio.com/en-us/messaging/conversations-api" hreflang="en"/> <!-- Based on path identifying if GTM ID should be twilio.com's or cusomter's --> <!-- 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; j.onerror=function(){if(w.disableAF){w.disableAF()}};f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5JLZ694');</script> <!-- End Google Tag Manager --> <!-- End Pre-Hiding Script --> <!-- Adobe Launch Script --> <script src="https://assets.adobedtm.com/a62564f453ce/b1b9d7ec982b/launch-29605e749a31.min.js" async></script> <!-- End Adobe Launch Script --> <!-- Segment Script --> <script> var segmentKey = "tdqj3S9J338oMnJLXqI49jDMX8ZEPhgM"; !function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware"];analytics.factory=function(e){return function(){var t=Array.prototype.slice.call(arguments);t.unshift(e);analytics.push(t);return analytics}};for(var e=0;e<analytics.methods.length;e++){var key=analytics.methods[e];analytics[key]=analytics.factory(key)}analytics.load=function(key,e){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.src="https://cdn.segment.com/analytics.js/v1/" + key + "/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);analytics._loadOptions=e};analytics._writeKey=segmentKey;;analytics.SNIPPET_VERSION="4.16.1"; analytics.page(); }}(); </script> <!-- End Segment Script --> <!-- Segment Consent Manager Script --> <script async> var segmentKey = "tdqj3S9J338oMnJLXqI49jDMX8ZEPhgM"; const isConsentRequired = true; const consentDecision = getCookieValue("cmapi_cookie_privacy"); fetchDestinations(segmentKey).then(destinations => { const destinationPreferences = destinations .map(function(dest) { if (consentDecision.includes("1") && consentDecision.includes("2") && consentDecision.includes("3")) return { [dest.id]: true }; if (consentDecision.includes("1") && consentDecision.includes("2")) return { [dest.id]: dest.category !== "Advertising" }; if (consentDecision.includes("1") && consentDecision.includes("3")) return { [dest.id]: dest.category === "Advertising" }; if (consentDecision.includes("1")) return { [dest.id]: false }; }) .reduce( (acc, val) => { return {...val, ...acc};}, { "Segment.io": !!consentDecision.includes("2") } ); conditionallyLoadAnalytics({ writeKey: segmentKey, destinations, destinationPreferences, isConsentRequired: isConsentRequired }); }); function getCookieValue(cookieName) { var name = cookieName + "="; let decodedCookie = decodeURIComponent(document.cookie); let cookieArray = decodedCookie.split(';'); for(const cookie of cookieArray) { let trimmedCookie = cookie.trim(); if (trimmedCookie.indexOf(name) == 0){ return trimmedCookie.substring(name.length); } } return "permit 1,2,3"; } function conditionallyLoadAnalytics({ writeKey, destinations, destinationPreferences, isConsentRequired }) { let isAnythingEnabled = false; if (!destinationPreferences) { if (isConsentRequired) { return; } if (!window.analytics.initialized) { window.analytics.load(writeKey); } return; } for (const destination of Object.keys(destinationPreferences) ) { const isEnabled = destinationPreferences[destination]; if (isEnabled) { isAnythingEnabled = true; } } if (isAnythingEnabled) { window.analytics.load(writeKey, { integrations: destinationPreferences }); } } async function fetchDestinationForWriteKey(writeKey) { const res = await window.fetch( "https://cdn.segment.com/v1/projects/"+writeKey+"/integrations" ); if (!res.ok) { throw new Error( "Failed to fetch integrations for write key "+writeKey+": HTTP+"+res.status+res.statusText ); } const destinations = await res.json(); for (const destination of destinations) { destination.id = destination.creationName; delete destination.creationName; } return destinations; } async function fetchDestinations(writeKey) { const destinationsRequests = []; destinationsRequests.push(fetchDestinationForWriteKey(writeKey)); let destinations = await Promise.all(destinationsRequests); destinations = [ ...destinations .reduce((a, b) => a.concat(b), []) .filter(d => d.id !== "Repeater") .reduce((map, item) => { map.has(item["id"]) || map.set(item["id"], item); return map; }, new Map()) .values() ]; return destinations; } </script> <!-- End Segment Consent Manager Script --> <!-- OG data --> <meta property="og:type" content="website"/> <meta property="og:site_name" content="Twilio"/> <meta property="og:url" content="https://www.twilio.com/en-us/messaging/conversations-api"/> <meta property="og:title" content="Conversations API | Twilio"/> <meta property="og:description" content="Integrate once and create 1-to-1 or multiparty customer conversations across preferred channels with a single API. Get to market quickly and reach consumers globally with a flexible messaging platform designed for scale"/> <meta property="og:image" content="https://www.twilio.com/content/dam/twilio-com/core-assets/social/twilio-com-default-ogimage.png"/> <!-- OG data --> <meta name="twitter:site" content="@twilio"/> <meta name="twitter:url" content="https://www.twilio.com/en-us/messaging/conversations-api"/> <meta name="twitter:title" content="Conversations API | Twilio"/> <meta name="twitter:description" content="Integrate once and create 1-to-1 or multiparty customer conversations across preferred channels with a single API. Get to market quickly and reach consumers globally with a flexible messaging platform designed for scale"/> <meta name="twitter:image" content="https://www.twilio.com/content/dam/twilio-com/core-assets/social/twilio-com-default-ogimage.png"/> <meta name="twitter:card" content="summary_large_image"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" href="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-site.lc-18ca746af5d8b3849c3a5a167b793256-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-com/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.css" type="text/css"> <link rel="stylesheet" href="/etc.clientlibs/twilio-com/clientlibs/clientlib-site.lc-b914adb166fa58f15d72dd0d25e1257c-lc.min.css" type="text/css"> <link rel="apple-touch-icon" sizes="180x180" href="/content/dam/twilio-com/core-assets/social/apple-touch-icon.png"/> <link rel="icon" type="image/png" sizes="32x32" href="/content/dam/twilio-com/core-assets/social/favicon-32x32.png"/> <link rel="icon" type="image/png" sizes="16x16" href="/content/dam/twilio-com/core-assets/social/favicon-16x16.png"/> <link rel="manifest" href="/content/dam/twilio-com/core-assets/social/site.webmanifest"/> <link rel="mask-icon" href="/content/dam/twilio-com/core-assets/social/safari-pinned-tab.svg" color="#f22f46"/> <meta name="msapplication-TileColor" content="#f22f46"/> <meta name="theme-color" content="#ffffff"/> <script>window.dataLayer = window.dataLayer || [];</script> <script> var _C = { REDACTION_COPY: { EMAIL: "EMAIL_REDACTED" } }; function extractParams() { for ( var b = [], a, c = /([^&=]+)=?([^&]*)/g, d = window.location.search.substring(1); (a = c.exec(d)); ) b.push([a[1], a[2]]); return b; } var urlParams = extractParams(), emailRegex = /(([^<>()\[\]\\.,;:\s@"%]+(\.[^<>()\[\]\\.,;:\s@"%]+)*)|(".+"))(@|%40)((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))/g; urlParams = urlParams.map(function (b) { return b.map(function (a) { _redactedValue = decodeURIComponent(a).replace( emailRegex, _C.REDACTION_COPY.EMAIL ); return _redactedValue === _C.REDACTION_COPY.EMAIL ? _redactedValue : a; }); }); function rewriteURL(b) { if (0 === b.length) return ( window.location.protocol + "//" + window.location.host + window.location.pathname + window.location.hash ); for (var a = "?", c = 0; c < b.length; c++) 0 < c && (a = a.concat("\x26")), (a = a.concat(b[c][0] + "\x3d" + b[c][1])); return ( window.location.protocol + "//" + window.location.host + window.location.pathname + a + window.location.hash ); } var newURL = rewriteURL(urlParams); newURL !== window.location.href && window.history.replaceState({}, document.title, newURL); var newTitle = document.title.replace(emailRegex, _C.REDACTION_COPY.EMAIL); newTitle !== document.title && (document.title = newTitle); dataLayer.push({ event: "piiRedacted" }); </script> <style> #teconsent { position: fixed; z-index: 1000; bottom: 0; right: 0; } </style> </head> <body class="base-page page basicpage " id="base-page-eed3b94bbc"> <!-- Based on path identifying if GTM ID should be twilio.com's or cusomter's --> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5JLZ694" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="teconsent" style="display: none;"></div> <header class="experiencefragment global-header"> <div class="xfpage page basicpage"> <nav role="navigation" class="navigation" data-maxmind-enabled="false" data-phone-endpoint="/content/twilio-com/global/en-us/messaging/apis/conversations-api.phonenumber.json" data-lang="en_US"> <header class="top-navigation"> <ul class="top-navigation-menu"> <li> <div class="language-selector select"> <button class="language-selector-button select-toggle" type="button" aria-expanded="false" aria-controls="language-selector" id="language-selector-button"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_2849_179)"> <path d="M0.5 8C0.5 9.98912 1.29018 11.8968 2.6967 13.3033C4.10322 14.7098 6.01088 15.5 8 15.5C9.98912 15.5 11.8968 14.7098 13.3033 13.3033C14.7098 11.8968 15.5 9.98912 15.5 8C15.5 6.01088 14.7098 4.10322 13.3033 2.6967C11.8968 1.29018 9.98912 0.5 8 0.5C6.01088 0.5 4.10322 1.29018 2.6967 2.6967C1.29018 4.10322 0.5 6.01088 0.5 8V8Z" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.19267 15.2806C5.178 13.7926 4.5 11.0886 4.5 7.99997C4.5 4.9113 5.178 2.2073 6.19267 0.719299" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.5 8H15.5" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M1.6543 12H14.345" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2 4H14" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> <path d="M9.80762 0.719299C10.8223 2.2073 11.5003 4.9113 11.5003 7.99997C11.5003 11.0886 10.8223 13.7926 9.80762 15.2806" stroke="#030B5D" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_2849_179"> <rect width="16" height="16" fill="white"/> </clipPath> </defs> </svg> <span>English</span> <div class="select-arrow"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </div> </button> <ul class="select-menu language-menu" role="menu" id="language-selector" inert aria-hidden="true" aria-labelledby="language-selector-button"> <li role="menuitem"> <a class href="/ja-jp/messaging/conversations-api" data-lang-code="ja-jp"> <span>日本語</span> </a> </li> <li role="menuitem"> <a class href="/de-de/messaging/conversations-api" data-lang-code="de-de"> <span>Deutsch</span> </a> </li> <li role="menuitem"> <a class href="/en-us/messaging/conversations-api" data-lang-code="en-us"> <span>English</span> <img src="/content/dam/twilio-com/core-assets/design-ops/component-svgs/check-black.svg" alt="Selected language icon" loading="lazy" class="selected-lang"/> </a> </li> <li role="menuitem"> <a class href="/es-mx/messaging/conversations-api" data-lang-code="es-mx"> <span>Español (México)</span> </a> </li> <li role="menuitem"> <a class href="/fr-fr/messaging/conversations-api" data-lang-code="fr-fr"> <span>Français</span> </a> </li> <li role="menuitem"> <a class href="/pt-br/messaging/conversations-api" data-lang-code="pt-br"> <span>Português (Brasil)</span> </a> </li> </ul> </div> </li> <li class="hide-md-down"> <div class="support-selector select"> <button class="support-selector-button select-toggle" aria-expanded="false" aria-controls="support-selector" id="support-selector-button" type="button"> <span>Support</span> <div class="select-arrow"> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </div> </button> <ul class="select-menu support-menu" role="menu" id="support-selector" inert aria-hidden="true" aria-labelledby="support-selector-button"> <li role="menuitem"> <a class target="_blank" href="https://help.twilio.com/"> <span>Help Center</span> </a> </li> <li role="menuitem"> <a class target="_self" href="https://help.twilio.com/"> <span>Talk to Support</span> </a> </li> <li role="menuitem"> <a class target="_blank" href="https://www.twiliotraining.com/store"> <span>Training</span> </a> </li> <hr/> <li role="menuitem"> <a class target="_blank" href="/en-us/support-plans"> <span>Support Plans</span> </a> </li> <li role="menuitem"> <a class target="_blank" href="/en-us/partners"> <span>Partner Solutions</span> </a> </li> </ul> </div> </li> <li class="hide-md-down"> <a class="login-link" href="https://www.twilio.com/login" data-uuid="43983c73-3a17-3fe1-b1fd-27f42de677ca">Login</a> </li> <li class="hide-md-down hide-up"> <a class="console-link" href="https://www.twilio.com/console" data-uuid="8ccb73b7-e8fa-3129-8959-37edc4c44418">Console</a> </li> </ul> </header> <div class="navigation-sections"> <div class="navigation-logo"> <a href="https://www.twilio.com/en-us" data-uuid="" aria-label="Twilio.com"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 133 48" class="customer-logo"> <title>Twilio logo</title> <g class="twilio"> <g class="path-fill logo-fill"> <path d="M15 32.8462C17.1242 32.8462 18.8461 31.1242 18.8461 29C18.8461 26.8758 17.1242 25.1539 15 25.1539C12.8758 25.1539 11.1538 26.8758 11.1538 29C11.1538 31.1242 12.8758 32.8462 15 32.8462ZM15 22.8462C17.1242 22.8462 18.8461 21.1242 18.8461 19C18.8461 16.8758 17.1242 15.1538 15 15.1538C12.8758 15.1538 11.1538 16.8758 11.1538 19C11.1538 21.1242 12.8758 22.8462 15 22.8462ZM25 32.8462C27.1242 32.8462 28.8462 31.1242 28.8462 29C28.8462 26.8758 27.1242 25.1539 25 25.1539C22.8758 25.1539 21.1538 26.8758 21.1538 29C21.1538 31.1242 22.8758 32.8462 25 32.8462ZM25 22.8462C27.1242 22.8462 28.8462 21.1242 28.8462 19C28.8462 16.8758 27.1242 15.1538 25 15.1538C22.8758 15.1538 21.1538 16.8758 21.1538 19C21.1538 21.1242 22.8758 22.8462 25 22.8462ZM20 4C30.8333 4 40 13.1667 40 24C40 34.8333 30.8333 44 20 44C9.16668 44 0 34.8333 0 24C0 13.1668 9.16673 4 20 4ZM20 9.38461C11.9512 9.38461 5.38462 15.7238 5.38462 23.7315C5.38462 31.7392 11.9512 38.6154 20 38.6154C28.0488 38.6154 34.6154 31.7392 34.6154 23.7315C34.6154 15.7238 28.0488 9.38461 20 9.38461ZM62.6848 35.9231H68.9693C69.1955 35.9231 69.2924 35.8262 69.357 35.6L71.4382 27.9166L73.4572 35.6C73.5218 35.8262 73.6187 35.9231 73.8449 35.9231H80.1268C80.3852 35.9231 80.5468 35.8262 80.6114 35.6L85.0011 19.3077V35.5354C85.0011 35.7615 85.1626 35.9231 85.3888 35.9231H92.3026C92.5287 35.9231 92.6903 35.7615 92.6903 35.5354V18.6185C92.6903 18.3923 92.5287 18.2308 92.3026 18.2308L78.8307 18.2321C78.6046 18.2321 78.4753 18.3291 78.4107 18.5875L76.8848 26.4076L75.3482 18.5875C75.3159 18.3614 75.1544 18.2321 74.9282 18.2321H68.0901C67.8639 18.2321 67.7024 18.3614 67.6701 18.5875L66.1738 26.4076L64.6823 18.5875C64.6177 18.3291 64.4885 18.2321 64.2623 18.2321L54.0538 18.2308V12.4678C54.0538 12.177 53.8536 12.0478 53.5306 12.1447L47.1123 14.215C46.8861 14.2796 46.7569 14.4735 46.7569 14.6996L46.7494 17.4155C46.7494 18.094 46.394 18.3847 45.7155 18.3847H44.0563C43.8301 18.3847 43.6685 18.5462 43.6685 18.7724V23.6139C43.6685 23.8401 43.8301 24.0016 44.0563 24.0016H46.5385V29.8815C46.5385 34.0492 48.1785 36.4046 53.1861 36.4046C55.1246 36.4046 56.7092 36.1555 57.5493 35.7678C57.8077 35.6386 57.9 35.477 57.9 35.2186V30.6413C57.9 30.3828 57.6462 30.2536 57.3231 30.4151C56.9031 30.609 56.4169 30.6413 55.9323 30.6413C54.64 30.6413 54.2276 30.1567 54.2276 28.5413V24.0016H57.238C57.4642 24.0016 57.6149 23.8518 57.6149 23.6257V19.3077L62.2002 35.6C62.2648 35.8262 62.4263 35.9231 62.6848 35.9231ZM85.0011 16.3053C85.0011 16.5315 85.1626 16.6931 85.3888 16.6931H92.3026C92.5287 16.6931 92.6903 16.5315 92.6903 16.3053V12.4678C92.6903 12.2416 92.5287 12.0801 92.3026 12.0801H85.3888C85.1626 12.0801 85.0011 12.2416 85.0011 12.4678V16.3053ZM94.2299 35.5354C94.2299 35.7615 94.3914 35.9231 94.6176 35.9231H101.539C101.765 35.9231 101.926 35.7615 101.926 35.5354V12.4678C101.926 12.2416 101.765 12.0801 101.539 12.0801H94.6176C94.3914 12.0801 94.2299 12.2416 94.2299 12.4678V35.5354ZM103.465 35.5354C103.465 35.7615 103.627 35.9231 103.853 35.9231H110.755C110.982 35.9231 111.143 35.7615 111.143 35.5354L111.139 18.6185C111.139 18.3923 110.978 18.2308 110.752 18.2308H103.849C103.623 18.2308 103.462 18.3923 103.462 18.6185L103.465 35.5354ZM103.462 16.3053C103.462 16.5315 103.623 16.6931 103.849 16.6931H110.755C110.982 16.6931 111.143 16.5315 111.143 16.3053L111.139 12.4678C111.139 12.2416 110.978 12.0801 110.752 12.0801H103.849C103.623 12.0801 103.462 12.2416 103.462 12.4678V16.3053ZM112.352 27.2323C112.352 32.4985 116.395 36.4615 122.308 36.4615C128.22 36.4615 132.228 32.4985 132.228 27.2323V26.8123C132.228 21.5462 128.22 17.6923 122.308 17.6923C116.395 17.6923 112.352 21.5462 112.352 26.8123V27.2323ZM119.769 27.2462V26.9307C119.769 24.5077 120.886 23.56 122.308 23.56C123.729 23.56 124.852 24.5077 124.852 26.9307V27.2462C124.852 29.637 123.729 30.6369 122.308 30.6369C120.886 30.6369 119.769 29.637 119.769 27.2462Z" fill="#F22F46"/> </g> </g> </svg> </a> </div> <ul class="navigation-links" role="list"> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-0" data-nav-id="0" class="navigation-link" id="navigation-link-0"> Products </button> <div data-nav-id="0" aria-labelledby="navigation-link-0" id="navigation-dropdown-0" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/messaging" target="_self" data-uuid="c65ba57f-0180-378b-a5a5-4f81c8d14373"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messaging"> <path d="M18.511 66.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 48.187V16.314A5.314 5.314 0 0 1 7.313 11h57.374A5.314 5.314 0 0 1 70 16.313v31.875a5.314 5.314 0 0 1-5.313 5.312H34.683L20.955 65.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 15.25c-.595 0-1.063.467-1.063 1.063v31.875c0 .594.468 1.062 1.063 1.062h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 49.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V16.313c0-.595-.468-1.063-1.063-1.063H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> <p class="navigation-dropdown-link-description"> Send and receive multichannel text and media messages in 180+ countries </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/messaging/channels/sms" target="_self" data-uuid="f2c3345d-3fa1-33d2-ac50-e682e778a0d8">SMS</a> <a href="/en-us/messaging/channels/whatsapp" target="_self" data-uuid="afe9c931-96ed-3c7a-895b-671a04507508">WhatsApp</a> <a href="/en-us/messaging/conversations-api" target="_self" data-uuid="4dc05265-7e3a-37f8-85bb-5f6587fdc22f">Conversations</a> <a href="/en-us/messaging/channels/rcs" target="_self" data-uuid="9e18930c-b023-39e8-b333-75606e8d9231">RCS</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice" target="_self" data-uuid="fbdaf169-d9be-33ff-9a3b-edc7ad68de86"> <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M25.6264 34.6385L25.659 34.5419L35.4121 7.04017C36.622 3.6285 41.698 4.49252 41.698 8.11013L41.6978 29.4478L44.4808 29.4481C46.6711 29.4481 48.218 31.5627 47.5692 33.6229L47.5372 33.7194L36.7466 64.6588C35.5514 68.0857 30.4551 67.2318 30.4551 63.6046L30.4548 38.8287L28.7099 38.8289C26.5126 38.8289 24.965 36.7018 25.6264 34.6385ZM38.4629 32.6652V8.11013L28.7099 35.6118H33.6902V63.6046L44.4808 32.6652H38.4629ZM16.7287 15.2802C16.693 14.4288 15.9908 13.7464 15.1246 13.74C14.2313 13.7334 13.5018 14.4483 13.4951 15.3366L13.1918 56.0007L13.1932 56.081C13.2289 56.9324 13.9311 57.6147 14.7973 57.6212C15.6906 57.6277 16.4202 56.9129 16.4268 56.0246L16.7301 15.3605L16.7287 15.2802ZM1.61752 23.7446C2.48379 23.7446 3.191 24.4218 3.23307 25.2729L3.23505 25.3531V47.9701C3.23505 48.8585 2.51086 49.5787 1.61752 49.5787C0.75126 49.5787 0.0440456 48.9015 0.00197953 48.0504L0 47.9701V25.3531C0 24.4648 0.72419 23.7446 1.61752 23.7446ZM70.3825 23.7446C71.2487 23.7446 71.9559 24.4218 71.998 25.2729L72 25.3531V47.9701C72 48.8585 71.2758 49.5787 70.3825 49.5787C69.5162 49.5787 68.809 48.9015 68.7669 48.0504L68.7649 47.9701V25.3531C68.7649 24.4648 69.4891 23.7446 70.3825 23.7446ZM58.0305 13.74C58.8967 13.7465 59.5989 14.4288 59.6346 15.2802L59.636 15.3605L59.3327 56.0246C59.3261 56.9129 58.5965 57.6277 57.7032 57.6212C56.837 57.6148 56.1348 56.9324 56.0991 56.081L56.0977 56.0007L56.401 15.3366C56.4076 14.4483 57.1372 13.7335 58.0305 13.74Z" fill="#121C2D"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> <p class="navigation-dropdown-link-description"> Make, receive, and monitor calls around the world </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice" target="_self" data-uuid="85a51b0c-4d53-387b-a7ae-907acf893d72">PSTN</a> <a href="/en-us/sip-trunking" target="_self" data-uuid="9bc860ef-c600-35c7-8472-aba61c48de31">SIP Trunking</a> <a href="/en-us/voice-sdk" target="_self" data-uuid="eaa2af1d-a6c5-313d-ba19-d1c7ab1ee858">SDK</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="09ea660c-4bb0-3472-9b1c-62d7726f31f7"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> <p class="navigation-dropdown-link-description"> Globally-managed multichannel 2FA and passwordless authentication </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="9ddfe08b-e121-3904-99a3-e29de8ba0d43"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> <p class="navigation-dropdown-link-description"> Know your customer and assess identity risk with real-time phone intelligence </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/email-api" target="_self" data-uuid="ae4a1f31-bb99-3afc-a76e-3d73bfd77527"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> <p class="navigation-dropdown-link-description"> Deliver email messages reliably at scale with SendGrid </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless" target="_self" data-uuid="ac64ad4a-b6e1-3b67-bc3f-9c582536609c"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Task Router logo</title> <g class="twilio_task-router"> <path d="M57.25 27.75 70 21.375 57.25 15v12.75ZM53 51.125A2.131 2.131 0 0 0 50.875 49H48.75c-6.8 0-10.625-5.95-14.45-12.75 3.825-6.8 7.65-12.75 14.45-12.75h2.125A2.131 2.131 0 0 0 53 21.375a2.131 2.131 0 0 0-2.125-2.125H48.75c-8.288 0-13.175 6.163-17 12.75-3.825-6.587-8.712-12.75-17-12.75H4.125A2.131 2.131 0 0 0 2 21.375 2.13 2.13 0 0 0 4.125 23.5H14.75c6.8 0 10.625 5.95 14.45 12.75C25.375 43.05 21.55 49 14.75 49H4.125A2.131 2.131 0 0 0 2 51.125a2.13 2.13 0 0 0 2.125 2.125H14.75c8.288 0 13.175-6.163 17-12.75 3.825 6.587 8.712 12.75 17 12.75h2.125A2.131 2.131 0 0 0 53 51.125Zm4.25 6.375L70 51.125 57.25 44.75V57.5Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> <p class="navigation-dropdown-link-description"> Build, deploy, and run apps with Twilio’s serverless environment and visual builder </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/phone-numbers" target="_self" data-uuid="bc7654e5-0721-3c82-91e0-a3cbe7e25011"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Phone Numbers logo</title> <g class="twilio_phone-numbers"> <g class="path-fill"> <path d="M61.233 22.531H50.402L52.923 4.64a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L45.726 22.53h-13.84l2.522-17.89a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L27.21 22.53H12.63a2.321 2.321 0 0 0-2.314 2.315 2.321 2.321 0 0 0 2.314 2.314h13.933L24.295 43.36h-13.98A2.321 2.321 0 0 0 8 45.676a2.321 2.321 0 0 0 2.315 2.314h13.308l-2.685 19.05a2.304 2.304 0 0 0 1.967 2.615h.324c1.134 0 2.13-.833 2.292-1.99l2.777-19.697h30.62a2.321 2.321 0 0 0 2.315-2.314 2.321 2.321 0 0 0-2.314-2.315H47.462l2.268-16.201h11.48a2.321 2.321 0 0 0 2.315-2.315 2.321 2.321 0 0 0-2.315-2.314l.023.023Zm-18.446 20.83h-13.84l2.267-16.201h13.841l-2.268 16.201Z"/> <path d="M41.77 69.977h-.325a2.304 2.304 0 0 1-1.967-2.615l1.852-13.17c.185-1.273 1.32-2.153 2.615-1.967a2.304 2.304 0 0 1 1.968 2.615L44.06 68.01A2.315 2.315 0 0 1 41.77 70v-.023Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Phone Numbers</strong> </span> <p class="navigation-dropdown-link-description"> Access local, national, and toll-free phone numbers </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/phone-numbers/toll-free" target="_self" data-uuid="bcdfd127-e417-3f55-8d47-8c519354096c">Toll-Free</a> <a href="/en-us/a2p-10dlc" target="_self" data-uuid="a4625ef8-f987-3ceb-b706-0e20b72ec175">10DLC</a> <a href="/en-us/messaging/channels/sms/short-codes" target="_self" data-uuid="6a6c6b4f-bd9b-3032-89e9-f8878c6c6bca">Short Codes</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video" target="_self" data-uuid="18154e03-2a6c-3e04-9d6a-fe839e1d0d88"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> <p class="navigation-dropdown-link-description"> Connect virtually with secure, high-quality video calling at global scale </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex" target="_self" data-uuid="01b27b9e-4068-385b-bad2-abbdac206df3"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> <p class="navigation-dropdown-link-description"> Digital engagement center for customer service and sales </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="5c2d9c5a-08e1-39ea-b937-91b213ac174b">Contact center</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/engage" target="_self" data-uuid="8523f978-5f68-3011-aad2-8e0c25c78e27"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Engage</strong> </span> <p class="navigation-dropdown-link-description"> Create multi-channel campaigns with a unified data-first platform </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/marketing-campaigns" target="_self" data-uuid="b4a7bbcb-e911-309b-99a4-553796478f8a"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns </strong> </span> <p class="navigation-dropdown-link-description"> Create and manage email marketing campaigns with SendGrid </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section has-border"> <h5 class="navigation-dropdown-title"> <span>Customer Data</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/" target="_blank" data-uuid="9a6fde8b-0d94-3c2e-8437-c8659a43ba63"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Segment logo</title> <g class="segment"> <path d="M65.64 23.242H31.876a2.254 2.254 0 0 0-2.254 2.254v3.998a2.254 2.254 0 0 0 2.254 2.253H65.64a2.254 2.254 0 0 0 2.254-2.253v-3.998a2.254 2.254 0 0 0-2.254-2.254ZM40.125 40.253H6.359a2.254 2.254 0 0 0-2.254 2.254v3.997a2.254 2.254 0 0 0 2.254 2.254h33.766a2.254 2.254 0 0 0 2.254-2.254v-3.997a2.254 2.254 0 0 0-2.254-2.254ZM16.863 63.642a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505Zm38.274-46.779a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505ZM36 61.516c-2.382 0-4.7-.34-6.89-.978-1.041-.298-2.147.298-2.53 1.318l-1.446 3.998a2.137 2.137 0 0 0 1.425 2.785A33.775 33.775 0 0 0 35.999 70c13.886 0 25.772-8.335 31.066-20.243.51-1.148-.02-2.487-1.212-2.913l-3.997-1.467c-1.02-.383-2.19.085-2.637 1.063C55.222 55.286 46.313 61.473 36 61.473v.043Zm0-51.032c2.381 0 4.7.34 6.89.978 1.041.298 2.147-.297 2.53-1.318l1.445-3.998a2.137 2.137 0 0 0-1.424-2.785A33.776 33.776 0 0 0 36 2c-13.885-.021-25.771 8.314-31.066 20.221-.51 1.149.022 2.488 1.212 2.913l3.998 1.468c1.02.382 2.19-.085 2.636-1.064C16.778 16.694 25.687 10.505 36 10.505v-.02Z" class="path-fill fill-path"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify your customer data with Segment CDP to power personalized engagement </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/connections" target="_blank" data-uuid="80c6422a-7ea3-39a4-9952-06c6846c86e0"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 6.85714C2 4.17462 4.17462 2 6.85714 2H65.1429C67.8255 2 70 4.17462 70 6.85714V14.1429C70 16.8254 67.8255 19 65.1429 19H38.0242C35.3416 19 33.1671 21.1746 33.1671 23.8571V42.476C33.1671 45.1586 30.9923 47.3331 28.3097 47.3331H6.85714C4.17462 47.3331 2 45.1586 2 42.476V6.85714ZM38.8329 29.5242C38.8329 26.8416 41.0077 24.667 43.6903 24.667H65.1429C67.8255 24.667 70 26.8416 70 29.5242V65.1431C70 67.8254 67.8255 70.0002 65.1429 70.0002H6.85714C4.17462 70.0002 2 67.8254 2 65.1431V57.8573C2 55.1747 4.17462 53.0002 6.85714 53.0002H33.9758C36.6584 53.0002 38.8329 50.8254 38.8329 48.1431V29.5242Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Connections ↗</strong> </span> <p class="navigation-dropdown-link-description"> Integrate web and mobile app data with a single API </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/reverse-etl" target="_blank" data-uuid="dd5d0700-bf87-33e5-aba1-83472ef7ffb7">Reverse ETL</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/protocols" target="_blank" data-uuid="04efcd9f-8d7b-3df3-b1f4-b48e000751cc"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Cloud with an upload download symbol</title> <g class="networks_cloud-upload-download"> <path fill-rule="evenodd" d="M24.799 2.006A23.31 23.31 0 0 1 47.572 18.39a15.85 15.85 0 0 1 21.016 7.886 15.857 15.857 0 0 1-10.59 21.922 2 2 0 1 1-.971-3.88 11.852 11.852 0 0 0 8.972-11.354 11.857 11.857 0 0 0-13.828-11.836 11.85 11.85 0 0 0-4.767 1.94 2 2 0 0 1-3.105-1.28A19.318 19.318 0 0 0 33.672 7.904 19.309 19.309 0 0 0 6.188 22.628a19.32 19.32 0 0 0 5.667 16.542 2 2 0 1 1-2.787 2.87 23.317 23.317 0 0 1 15.73-40.034Zm.55 34.152a2 2 0 0 1 1.414.586l8.525 8.526a2 2 0 1 1-2.829 2.828l-5.11-5.111V68a2 2 0 1 1-4 0V42.987l-5.11 5.111a2 2 0 1 1-2.83-2.828l8.525-8.526a2 2 0 0 1 1.415-.586Zm21.312 0a2 2 0 0 1 2 2V63.17l5.11-5.111a2 2 0 1 1 2.829 2.828l-8.525 8.526a2 2 0 0 1-2.829 0l-8.525-8.526a2 2 0 1 1 2.83-2.828l5.11 5.11v-25.01a2 2 0 0 1 2-2Z" class="path-fill" clip-rule="evenodd"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Protocols ↗</strong> </span> <p class="navigation-dropdown-link-description"> Protect the integrity of your data </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/unify" target="_blank" data-uuid="51b743b4-fbc4-3f37-bc58-92bb4d9cee95"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M15.6794 21.5625C15.6794 12.1391 23.3118 4.5 32.7269 4.5C33.4512 4.5 34.0382 5.08763 34.0382 5.8125V37.3126C34.0382 38.0375 33.4512 38.6249 32.7269 38.6249C23.3118 38.6249 15.6794 30.9858 15.6794 21.5625ZM39.2835 28.125C42.9048 28.125 45.8404 25.1868 45.8404 21.5625C45.8404 17.9381 42.9048 15 39.2835 15C39.0932 15.0013 38.9032 15.0144 38.7144 15.0394C38.527 15.0644 38.338 15.0071 38.1958 14.8824C38.0536 14.7577 37.9722 14.5776 37.9722 14.3884V5.8125C37.9722 5.08763 38.5594 4.5 39.2835 4.5C40.236 4.50822 41.1861 4.59603 42.124 4.7625C42.7565 4.86378 43.2234 5.40763 43.2281 6.04875V8.60813C43.2287 8.8851 43.4029 9.13194 43.6635 9.225C44.0922 9.37699 44.5125 9.55225 44.9224 9.75001C45.1741 9.86329 45.4699 9.80661 45.662 9.60826L47.4665 7.80488C47.9198 7.3517 48.6341 7.29287 49.1554 7.66575C50.7093 8.77081 52.0667 10.1293 53.1708 11.6846C53.5427 12.207 53.4827 12.922 53.0292 13.3751L51.2273 15.1785C51.031 15.3759 50.9805 15.6758 51.1014 15.9266C51.2956 16.3387 51.4712 16.7614 51.626 17.1892C51.719 17.4501 51.9656 17.6245 52.2423 17.625H54.7836C55.4238 17.6251 55.9703 18.0878 56.0767 18.7196C56.416 20.5997 56.416 22.5253 56.0767 24.4054C55.9703 25.0372 55.4238 25.4999 54.7836 25.5001H52.2423C51.9615 25.4951 51.7091 25.6708 51.6155 25.9357C51.4633 26.3628 51.2885 26.7827 51.091 27.1957C50.9701 27.4466 51.0206 27.7464 51.2169 27.9439L53.0239 29.7419C53.476 30.1947 53.5358 30.908 53.1655 31.4299C52.0614 32.9858 50.7042 34.3453 49.1501 35.4513C48.6282 35.8236 47.9139 35.7636 47.4611 35.3096L45.6567 33.5062C45.4595 33.3097 45.1599 33.2593 44.9092 33.3802C44.499 33.5769 44.0789 33.7521 43.6503 33.9053C43.3888 33.9986 43.2145 34.2468 43.2151 34.5248V37.0684C43.2149 37.7091 42.7526 38.2562 42.1214 38.3625C41.1835 38.5289 40.2334 38.6167 39.281 38.6249C38.5567 38.6249 37.9696 38.0375 37.9696 37.3126V28.6316C37.9694 28.4644 38.042 28.3051 38.1684 28.1959C38.2947 28.0864 38.4627 28.0376 38.6279 28.062C38.8448 28.0976 39.0639 28.1187 39.2835 28.125ZM32.7269 39.9375C18.2488 39.9534 6.5159 51.6966 6.5 66.1874C6.5 66.9123 7.08711 67.5 7.81134 67.5H32.7269C33.4512 67.5 34.0382 66.9123 34.0382 66.1874V41.2501C34.0382 40.5252 33.4512 39.9375 32.7269 39.9375ZM63.8582 60.9376C64.5029 60.9429 65.0506 61.4112 65.1564 62.0479C65.3806 63.4306 65.4955 64.8288 65.5 66.2296C65.4746 66.936 64.8949 67.4953 64.1886 67.4947H51.5998C51.2688 67.4917 50.9949 67.2368 50.9677 66.9068C50.3065 60.3387 45.1167 55.1445 38.5545 54.4826C38.2247 54.4555 37.97 54.1812 37.9671 53.8501V41.2501C37.9667 40.5392 38.5317 39.9574 39.2417 39.9375C41.1171 39.9371 42.9872 40.1367 44.8201 40.5334C45.4152 40.6716 45.8363 41.2028 45.8351 41.8143V45.7754C45.8349 46.0542 46.0105 46.3025 46.2731 46.395C47.2649 46.746 48.2293 47.1707 49.158 47.6654C49.4123 47.8017 49.7258 47.7546 49.9291 47.5501L52.6435 44.8619C53.0874 44.418 53.7834 44.3508 54.3038 44.7019C57.3678 46.8439 59.9373 49.6188 61.8387 52.8393C62.1303 53.352 62.0446 53.9961 61.629 54.4143L58.7439 57.3019C58.5531 57.4905 58.4969 57.7769 58.6023 58.0238C58.9423 58.8176 59.2322 59.6321 59.4704 60.4623C59.552 60.7438 59.8097 60.9374 60.1025 60.9376H63.8582Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Unify ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify customer data across every channel </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/profiles-sync/" target="_blank" data-uuid="df9276fe-890c-3edc-a15e-2191450e6a5f">Profiles Sync</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/twilio-engage/journeys" target="_blank" data-uuid="52a31c29-b4ce-3b9c-81ff-a3d8ceb9630a"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Journeys ↗</strong> </span> <p class="navigation-dropdown-link-description"> Orchestrate multichannel customer journeys </p> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/products" target="_self" class="button button-secondary">See all products</a> </div> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-1" data-nav-id="1" class="navigation-link" id="navigation-link-1"> Solutions </button> <div data-nav-id="1" aria-labelledby="navigation-link-1" id="navigation-dropdown-1" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Use Cases</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/user-verification-identity" target="_self" data-uuid="8a61b858-319b-3379-abd3-566a6abdcb14"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verification & identity</strong> </span> <p class="navigation-dropdown-link-description"> Add user verification to protect against fraud. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/fraud-prevention" target="_self" data-uuid="407b7bc2-53a5-3e33-9734-e199ad34fdd6">Fraud prevention</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/alerts-and-notifications" target="_self" data-uuid="80bd65b4-774c-34de-b134-036c4413b9c7"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Alerts & notifications</strong> </span> <p class="navigation-dropdown-link-description"> Deliver notifications across text, email, voice. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/appointment-reminders" target="_self" data-uuid="78e8fd81-c6d5-367a-813c-71bed7f19bdd">Appointment reminders</a> <a href="/en-us/use-cases/lead-alerts" target="_self" data-uuid="8f4e1e8a-42be-3fba-9020-8fa3379fbefa">Lead alerts</a> <a href="/en-us/use-cases/mass-texting" target="_self" data-uuid="183e2e30-f42a-327a-96fa-b5b6361f460e">Mass texting</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/marketing-and-promotions" target="_self" data-uuid="d6bfc75d-ccaa-3499-b691-87560532b852"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing & promotions</strong> </span> <p class="navigation-dropdown-link-description"> Create multichannel marketing campaigns. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="20e53019-744c-3125-853c-5c23c67fad10">SMS marketing</a> <a href="/en-us/use-cases/automated-customer-surveys" target="_self" data-uuid="b19035be-c429-37ee-9444-7459d9f739f3">Customer surveys</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="8164b46f-cfc8-3810-a421-ffb97109f50c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Contact Center</strong> </span> <p class="navigation-dropdown-link-description"> Provide personalized, data-driven service. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/ivr" target="_self" data-uuid="51363291-2576-349e-a9d0-424155eda446"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>IVR & self-service</strong> </span> <p class="navigation-dropdown-link-description"> Set up a modern IVR with AI-enabled support. </p> </div> </a> <div class="navigation-dropdown-shortcut-links multiline"> <a href="/en-us/use-cases/call-tracking" target="_self" data-uuid="a708bb96-0908-3b37-a321-9aefff43b428">Call tracking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Teams</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/marketing" target="_self" data-uuid="13b41fbe-fd91-313f-84a9-66f96e8bea81"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Marketing</strong> </span> <p class="navigation-dropdown-link-description"> Keep customers engaged on any channel </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/product-and-engineering" target="_self" data-uuid="b00be778-d89d-3eb0-b749-8fdc42a670e1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Product & Engineering</strong> </span> <p class="navigation-dropdown-link-description"> Connect with target users reliably and securely </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/customer-experience" target="_self" data-uuid="0a87b1a4-059c-3755-9c39-40596a306f51"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Experience</strong> </span> <p class="navigation-dropdown-link-description"> Deliver personalized sales and support experiences at scale </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="17c80c23-dd41-30d2-af31-4cb01c9dbaf1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developers</strong> </span> <p class="navigation-dropdown-link-description"> Tutorials and docs to start building on Twilio </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Industries</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/financial-services" target="_self" data-uuid="7ae500c7-4ddc-331f-97c3-7466b653129b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Financial Services</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/healthcare" target="_self" data-uuid="4b84119b-4e11-3715-92d0-afb0ac35dc70"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Healthcare</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/hospitality" target="_self" data-uuid="fa74729a-8a7a-3830-a313-6b67c9d6a7a4"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Hospitality</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/public-sector" target="_self" data-uuid="52d2134e-9eaf-3f01-994f-d98a9fdbebc1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Public Sector</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/real-estate" target="_self" data-uuid="337d3dd2-b03c-3846-9f44-fcf9a88dc783"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Real Estate</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/retail" target="_self" data-uuid="4215e011-af2d-3e36-aaf1-cc991287c528"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Retail</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/solutions" target="_self" class="button button-secondary">See all solutions</a> </div> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>People shaking hands</title> <g class="users_handshake--circle"> <path fill-rule="evenodd" d="M11.96 60.04C18.38 66.46 26.92 70 36 70c9.08 0 17.62-3.54 24.04-9.96C66.46 53.62 70 45.08 70 36c0-9.08-3.54-17.62-9.96-24.04C53.62 5.54 45.08 2 36 2c-9.08 0-17.62 3.54-24.04 9.96C5.54 18.38 2 26.92 2 36c0 9.08 3.54 17.62 9.96 24.04Zm2.83-45.25C20.45 9.12 27.99 6 36 6c8.01 0 15.54 3.12 21.21 8.79a29.947 29.947 0 0 1 6 8.54h-4.55a5.397 5.397 0 0 0-1.415.134L44.75 18.54c-1-.37-2.05-.54-3.12-.47-1.06.06-2.09.34-3.01.82l-6.072 3.031a7.01 7.01 0 0 0-2.968-1.091c-1.19-.15-2.41.01-3.57.47l-8.637 3.684a5.337 5.337 0 0 0-.323-.314c-1.02-.92-2.33-1.38-3.71-1.33H8.791a30.13 30.13 0 0 1 5.999-8.55ZM7.266 27.34A30.046 30.046 0 0 0 6 36c0 2.98.432 5.893 1.265 8.67H13.5a1.241 1.241 0 0 0 1.31-1.12V28.46c-.03-.31-.17-.6-.41-.81-.25-.22-.56-.33-.9-.31H7.266ZM8.79 48.67h4.78l-.01.01c1.29 0 2.52-.46 3.49-1.33a5.3 5.3 0 0 0 .737-.81h2.743l8 6.11a4.308 4.308 0 0 0 3.12 1.3l-.02.01c1.01 0 1.98-.35 2.77-1l8.094-6.685 10.743-2.145a5.24 5.24 0 0 0 5.193 4.54h4.778a30.038 30.038 0 0 1-5.998 8.54C51.55 62.88 44.01 66 36 66c-8.01 0-15.54-3.13-21.21-8.79a29.947 29.947 0 0 1-6-8.54Zm55.944-4A30.086 30.086 0 0 0 66 36c0-2.98-.432-5.893-1.266-8.67H58.5c-.096 0-.191.008-.284.024-.155.087-.32.154-.493.197a1.27 1.27 0 0 0-.533.909v13.048c.014.133.013.265 0 .395v1.647a1.241 1.241 0 0 0 1.31 1.12h6.234ZM34.96 34h-.09c-.82-.01-1.62-.19-2.38-.53a6.33 6.33 0 0 1-1.99-1.41c-.57-.6-1-1.3-1.29-2.07a6.34 6.34 0 0 1 .249-5.121A3.12 3.12 0 0 0 27.54 25l-8.75 3.73v13.81h2.41c.44 0 .86.14 1.21.41l8.67 6.62c.1.08.2.17.29.27.06.07.15.11.24.12.1.01.18-.02.26-.08l8.204-6.776c.142-.163.31-.303.501-.414l3.415-2.82c.08-.06.13-.16.14-.26 0-.09-.01-.18-.06-.25l-5.665-6.29-1.135.48c-.75.31-1.53.46-2.32.46l.01-.01Zm12.867 7.134 5.373-1.072V28.26c.039-.67.202-1.314.478-1.905L43.31 22.27c-.44-.17-.94-.24-1.44-.21s-.99.16-1.44.4l-6.45 3.22c-.46.25-.85.69-1.05 1.23-.2.54-.2 1.13.01 1.66.11.3.27.54.47.76.2.21.44.38.71.5.26.11.53.17.8.18.27 0 .55-.05.81-.15l6.41-2.71c1.02-.43 2.19.04 2.62 1.06.43 1.02-.05 2.19-1.06 2.62l-1.397.59 4.807 5.34s.06.07.09.11c.7.91 1.02 2.04.89 3.18-.043.376-.131.74-.263 1.084Z" class="path-fill fill-path" clip-rule="evenodd"/> </g> </svg> <span>Partners</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners" target="_self" data-uuid="524095c8-b918-3482-890c-5f32b5dd5392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Find a partner</strong> </span> <p class="navigation-dropdown-link-description"> Work with a Twilio partner to buy or build the right solution </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners/become-a-partner" target="_self" data-uuid="e9e2abbd-08c9-3d71-a326-dea63713c4a5"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Partner with us</strong> </span> <p class="navigation-dropdown-link-description"> Join our Partner Program to build or sell Twilio solutions to your customers. </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-2" data-nav-id="2" class="navigation-link" id="navigation-link-2"> Developers </button> <div data-nav-id="2" aria-labelledby="navigation-link-2" id="navigation-dropdown-2" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section blue"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>An Open book</title> <g class="documents_book--open"> <path d="M35.995 67.5h-.029c-.263 0-.515-.058-.748-.164a1.946 1.946 0 0 1-.642-.454h-.01c-.146-.165-7.349-7.363-30.173-7.673-.943-.029-1.79-.396-2.42-1.053A3.412 3.412 0 0 1 1 55.75V7.95c0-.918.36-1.788 1.011-2.435.32-.329.71-.58 1.137-.754A3.32 3.32 0 0 1 4.49 4.5c19.305.251 28.297 5.276 31.505 7.672 3.208-2.396 12.2-7.42 31.506-7.672.495 0 .923.077 1.35.26.419.175.808.426 1.138.755A3.418 3.418 0 0 1 71 7.95v47.82c0 .889-.34 1.739-.962 2.396a3.435 3.435 0 0 1-2.392 1.053c-22.737.31-29.979 7.43-30.202 7.653-.03.039-.069.068-.107.106a.979.979 0 0 1-.156.126 1.973 1.973 0 0 1-.437.251 1.768 1.768 0 0 1-.603.135h-.136l-.01.01Zm1.944-51.927v46.168c4.287-2.541 13.123-6.107 29.163-6.387V8.374c-19.228.33-27.19 5.605-29.163 7.2ZM4.89 55.354c16.039.27 24.875 3.836 29.162 6.377V15.573c-1.944-1.575-9.906-6.87-29.163-7.198v46.98Zm39.923-7.807a1.933 1.933 0 0 1-.622-3.768 65.327 65.327 0 0 1 15.932-3.16 1.949 1.949 0 0 1 2.08 1.787 1.939 1.939 0 0 1-1.798 2.068 61.28 61.28 0 0 0-14.97 2.967 1.93 1.93 0 0 1-.612.096l-.01.01Zm-17.624 0c-.204 0-.408-.03-.612-.097a60.922 60.922 0 0 0-14.97-2.966 1.939 1.939 0 0 1-1.799-2.068c.078-1.063 1.02-1.855 2.08-1.788a65.422 65.422 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.445 1.945 1.945 0 0 1-1.847 1.323l-.01-.01Zm0-9.982c-.204 0-.408-.029-.612-.096a60.832 60.832 0 0 0-14.97-2.967 1.939 1.939 0 0 1-1.799-2.068c.078-1.062 1.02-1.845 2.08-1.787a65.327 65.327 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.444 1.945 1.945 0 0 1-1.847 1.324l-.01-.01Zm17.624 0a1.933 1.933 0 0 1-.622-3.768 65.331 65.331 0 0 1 15.932-3.16c1.06-.067 2.003.725 2.08 1.788a1.939 1.939 0 0 1-1.798 2.068 61.194 61.194 0 0 0-14.97 2.966 1.93 1.93 0 0 1-.612.097l-.01.01Z" class="path-fill fill-path"/> </g> </svg> <span>Documentation</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/flex" target="_self" data-uuid="202617e5-93a5-3f8d-a293-5fd07113423d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sms" target="_self" data-uuid="4a7d38b6-987a-3434-819a-8315ad35aa69"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>SMS</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/voice" target="_self" data-uuid="276792df-f5d6-374a-b4ac-ce3760668b6c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://docs.sendgrid.com/" target="_self" data-uuid="3a701880-504d-3d84-a4d2-19da3883139d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/whatsapp" target="_self" data-uuid="11717582-95ce-36a6-b33c-aa4968c7816a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>WhatsApp API</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sip-trunking" target="_self" data-uuid="9c18aca3-4bad-3cb7-b449-2fb09e0ee6de"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Elastic SIP Trunking</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/verify/api" target="_self" data-uuid="2216d993-093c-32a9-8311-c03d32122ee9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/serverless/functions-assets/functions" target="_self" data-uuid="cc54ec7e-db8f-3e55-a052-f3c6aa412514"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Functions</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/studio" target="_self" data-uuid="698bf00e-7d9d-36ee-9901-73eb234f7e79"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Studio</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/twilio-cli/quickstart" target="_self" data-uuid="bd2d1990-cd6c-3a5b-8fde-660fa31e84ee"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio CLI</strong> </span> </div> </a> </li> </ul> <div class="button-container small inverse"> <a href="https://www.twilio.com/docs" target="_self" class="button button-secondary">See all docs</a> </div> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation">> <title>Two users in a circle</title> <g class="users_user-group--circle"> <path fill-rule="evenodd" d="M15.7 42.495c2.59 2.59 6.02 4.01 9.68 4.01s7.09-1.43 9.68-4.01c2.59-2.59 4.01-6.02 4.01-9.68 0-.548-.032-1.09-.095-1.626a1.966 1.966 0 0 0-.064-.474 13.598 13.598 0 0 0-3.851-7.58 13.584 13.584 0 0 0-9.68-4.01c-3.66 0-7.1 1.42-9.68 4.01a13.584 13.584 0 0 0-4.01 9.68c0 3.66 1.42 7.09 4.01 9.68Zm18.945-12.531a9.648 9.648 0 0 0-2.415-3.999 9.622 9.622 0 0 0-6.85-2.84c-2.59 0-5.02 1.01-6.85 2.84-.206.206-.4.419-.586.639a17.338 17.338 0 0 0 7.916 3.861c2.951.592 5.952.419 8.785-.501Zm.35 4.065a21.222 21.222 0 0 1-5.685.776v.01c-1.41 0-2.83-.14-4.24-.42a21.25 21.25 0 0 1-9.031-4.17 9.728 9.728 0 0 0-.349 2.59c0 2.59 1.01 5.02 2.84 6.85a9.622 9.622 0 0 0 6.85 2.84c2.59 0 5.02-1.01 6.85-2.84a9.615 9.615 0 0 0 2.765-5.636Z" clip-rule="evenodd" class="fill-path path-fill"/> <path fill-rule="evenodd" d="M36 69.875c-9.05 0-17.55-3.52-23.95-9.92-6.4-6.4-9.92-14.91-9.92-23.95s3.52-17.56 9.92-23.96c6.4-6.4 14.91-9.92 23.95-9.92s17.56 3.52 23.95 9.92c6.39 6.4 9.92 14.9 9.92 23.95 0 6.87-2.029 13.424-5.806 18.983a1.98 1.98 0 0 1-.282.408 34.297 34.297 0 0 1-3.832 4.559c-6.4 6.4-14.91 9.92-23.95 9.92v.01Zm26.011-19.146c2.524-4.442 3.869-9.484 3.869-14.724 0-7.97-3.11-15.48-8.75-21.12-5.64-5.64-13.15-8.75-21.13-8.75v-.01c-7.98 0-15.48 3.11-21.12 8.75-5.64 5.64-8.75 13.14-8.75 21.13 0 5.916 1.705 11.558 4.88 16.378a21.122 21.122 0 0 1 29.107.308 14.615 14.615 0 0 1 3.373-3.266 14.737 14.737 0 0 1 3.936-1.954 9.454 9.454 0 0 1-2.156-1.616 9.46 9.46 0 0 1-2.05-3.06 9.341 9.341 0 0 1-.72-3.61c0-1.24.24-2.46.72-3.61a9.46 9.46 0 0 1 2.05-3.06c.88-.88 1.91-1.57 3.06-2.04 2.3-.95 4.92-.95 7.22 0a9.46 9.46 0 0 1 3.06 2.05 9.46 9.46 0 0 1 2.05 3.06c.48 1.15.72 2.37.72 3.61 0 1.24-.24 2.46-.72 3.61a9.304 9.304 0 0 1-2.05 3.06 9.454 9.454 0 0 1-2.137 1.606 14.713 14.713 0 0 1 5.539 3.258Zm-19.216 5.138a10.766 10.766 0 0 1 8.165-5.062c1.86-.17 3.74.15 5.44.92a10.901 10.901 0 0 1 3.359 2.401 30.305 30.305 0 0 1-2.629 2.999A29.857 29.857 0 0 1 46.185 64.1a20.954 20.954 0 0 0-3.39-8.233Zm-3.788 1.614a17.043 17.043 0 0 1 3.298 7.73c-2.05.439-4.16.664-6.305.664-7.97 0-15.48-3.11-21.12-8.75a30.609 30.609 0 0 1-1.435-1.536 17.088 17.088 0 0 1 7.335-4.224c3.3-.92 6.77-.84 10.03.25a17.101 17.101 0 0 1 7.887 5.471c.086.143.19.276.31.395ZM51.94 33.745a5.395 5.395 0 0 0-3.84 1.59c-.51.51-.9 1.1-1.18 1.76a5.47 5.47 0 0 0 0 4.16c.27.66.67 1.26 1.18 1.76.51.51 1.1.9 1.76 1.18 1.33.55 2.83.55 4.16 0 .66-.27 1.26-.67 1.76-1.18.51-.51.9-1.1 1.18-1.76a5.47 5.47 0 0 0 0-4.16c-.27-.66-.67-1.26-1.18-1.76-.51-.51-1.1-.9-1.76-1.18a5.47 5.47 0 0 0-2.08-.41Z" clip-rule="evenodd" class="fill-path path-fill"/> </g> </svg> <span>Community</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="44e0ac6f-a865-3570-9b75-6c2a200146b9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Ahoy!</strong> </span> <p class="navigation-dropdown-link-description"> Get inspired by the latest from our developer community </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog/developers" target="_self" data-uuid="f39790d8-1e22-3926-8425-4854e425c140"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developer Blog</strong> </span> <p class="navigation-dropdown-link-description"> Read tutorials, community projects, and product updates </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://stackoverflow.com/collectives/twilio" target="_self" data-uuid="50efaed5-3ef6-3f25-bdfe-cc3e5f66d63b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Stack Overflow</strong> </span> <p class="navigation-dropdown-link-description"> Ask the Twilio community for help </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/champions" target="_self" data-uuid="517d626e-33c1-3931-8977-69ba8a6aa28f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Champions</strong> </span> <p class="navigation-dropdown-link-description"> Become a Twilio community Champion </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Wrench and screwdriver</title> <g class="etc_wrench-screwdriver"> <path class="path-fill fill-path" fill-rule="evenodd" d="M57.847 20.266a6.292 6.292 0 0 1-2.909-.705l-23.96 24.07 3.32 3.334c.367.37.57.856.57 1.37a1.96 1.96 0 0 1-.57 1.382L15.596 68.482a8.45 8.45 0 0 1-6.04 2.508h-.01a8.46 8.46 0 0 1-6.04-2.518A8.553 8.553 0 0 1 1 62.405c0-2.285.89-4.453 2.507-6.067l18.7-18.765a1.933 1.933 0 0 1 2.74 0l3.296 3.31 23.96-24.078a6.348 6.348 0 0 1-.696-2.908c0-1.701.658-3.305 1.859-4.501l7.782-7.827a1.933 1.933 0 0 1 2.74 0L70.12 7.82a1.933 1.933 0 0 1 0 2.742l-7.792 7.826a6.275 6.275 0 0 1-4.482 1.867v.01Zm-2.478-6.369c0 .662.262 1.284.726 1.75l.004.004c.93.93 2.553.939 3.49-.003L66.008 9.2l-3.49-3.505-6.422 6.442a2.476 2.476 0 0 0-.726 1.76ZM6.237 59.09l17.335-17.395 6.611 6.64L12.857 65.73a4.662 4.662 0 0 1-3.31 1.371 4.623 4.623 0 0 1-3.3-1.37 4.673 4.673 0 0 1-1.375-3.326c0-1.254.484-2.43 1.365-3.316Z" clip-rule="evenodd"/> <path class="path-fill fill-path" d="M21.84 30.64c.377.38.87.574 1.365.574l.01.02c.493 0 .987-.195 1.364-.574a1.954 1.954 0 0 0 0-2.752l-4.627-4.647a1.925 1.925 0 0 0-2.08-.438 9.06 9.06 0 0 1-4.066.603 8.97 8.97 0 0 1-7.163-4.716 10.9 10.9 0 0 0 2.923.068 10.75 10.75 0 0 0 6.37-3.092 10.877 10.877 0 0 0 3.068-6.407c.106-.982.077-1.974-.078-2.946a8.952 8.952 0 0 1 2.081 1.536 9.01 9.01 0 0 1 2.469 4.58 9.144 9.144 0 0 1-.436 5.192c-.28.72-.107 1.536.436 2.08l6.727 6.777a1.933 1.933 0 0 0 2.74 0 1.954 1.954 0 0 0 0-2.751l-5.886-5.921a13.06 13.06 0 0 0 .213-6.175 12.989 12.989 0 0 0-3.523-6.543 12.86 12.86 0 0 0-7.754-3.675 1.928 1.928 0 0 0-1.839.904 1.933 1.933 0 0 0 0 2.061 6.99 6.99 0 0 1 .997 4.434 6.912 6.912 0 0 1-1.965 4.093A6.884 6.884 0 0 1 9.111 14.9a6.835 6.835 0 0 1-4.413-1.002 1.95 1.95 0 0 0-2.053 0 1.933 1.933 0 0 0-.9 1.848 13.172 13.172 0 0 0 1.936 5.58 12.953 12.953 0 0 0 4.201 4.133 12.905 12.905 0 0 0 5.595 1.828c1.53.126 3.097-.03 4.578-.447l3.785 3.801ZM58.04 71c-2.516 0-4.994-.739-7.104-2.13a13.061 13.061 0 0 1-5.246-6.932 13.076 13.076 0 0 1-.126-7.467l-4.365-4.385a1.954 1.954 0 0 1 0-2.752 1.933 1.933 0 0 1 2.739 0l5.217 5.231c.542.545.716 1.371.436 2.09a9.182 9.182 0 0 0-.204 6.107 9.123 9.123 0 0 0 3.679 4.861 9.053 9.053 0 0 0 5.904 1.44 9.08 9.08 0 0 0 5.488-2.626 9.153 9.153 0 0 0 2.614-5.513c.213-2.08-.3-4.18-1.433-5.93a9.055 9.055 0 0 0-10.918-3.491 1.91 1.91 0 0 1-2.072-.438l-7.375-7.409a1.954 1.954 0 0 1 0-2.751 1.933 1.933 0 0 1 2.739 0l6.534 6.563a12.99 12.99 0 0 1 7.433.126 13.015 13.015 0 0 1 6.902 5.27 13.128 13.128 0 0 1 2.052 8.459 13.042 13.042 0 0 1-3.727 7.866A12.936 12.936 0 0 1 58.06 71h-.02Z"/> <path class="path-fill fill-path" d="M60.286 58.069a2.425 2.425 0 0 1-2.42 2.43 2.425 2.425 0 0 1-2.42-2.43 2.425 2.425 0 0 1 2.42-2.431 2.425 2.425 0 0 1 2.42 2.43Z"/> </g> </svg> <span>Tools & Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/code-exchange" target="_self" data-uuid="82f92ed1-c941-3e67-8f96-daa4bbbfa252"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>CodeExchange</strong> </span> <p class="navigation-dropdown-link-description"> Usable code samples for faster builds </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/changelog" target="_self" data-uuid="d406aef4-2fe8-3406-a0b4-d5e7d530f428"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Changelog</strong> </span> <p class="navigation-dropdown-link-description"> See updates and additions to Twilio products </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://status.twilio.com" target="_self" data-uuid="511e46da-8d07-3439-a9c2-60b8e1ff1392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>API Status</strong> </span> <p class="navigation-dropdown-link-description"> Check real-time monitoring of APIs and all services </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/products/beta" target="_self" data-uuid="48e907ba-efae-30e7-bdcd-8beec988feab"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Beta Products and Features</strong> </span> <p class="navigation-dropdown-link-description"> Explore new launches and request access to early releases </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-3" data-nav-id="3" class="navigation-link" id="navigation-link-3"> Why Twilio </button> <div data-nav-id="3" aria-labelledby="navigation-link-3" id="navigation-dropdown-3" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Company</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/why-twilio" target="_self" data-uuid="9a787b06-a28b-3280-9f6b-deea01bbc545"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Why Twilio</strong> </span> <p class="navigation-dropdown-link-description"> The trusted platform for data-driven customer engagement across any channel. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company" target="_self" data-uuid="a849a5d8-ff83-3d17-af32-7b9edfd56499"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>About Us</strong> </span> <p class="navigation-dropdown-link-description"> Twilio company page </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/values" target="_self" data-uuid="790c50bd-02f7-3684-9a34-dccc637c0787"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Magic</strong> </span> <p class="navigation-dropdown-link-description"> Twilio core values </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/diversity" target="_self" data-uuid="1bbd6dce-661a-3c54-81a1-d78659cb5b2c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Diversity</strong> </span> <p class="navigation-dropdown-link-description"> Diversity, equity, and inclusion </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://investors.twilio.com" target="_self" data-uuid="f9b5d6ef-c537-36ee-afb7-46999b3632f1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Investor Relations</strong> </span> <p class="navigation-dropdown-link-description"> Information for Twilio investors </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/press" target="_self" data-uuid="1b2fd53c-a7a5-32e0-8ad2-931a7dc28267"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Press & Media</strong> </span> <p class="navigation-dropdown-link-description"> Latest announcements and launches </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Our Platform</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/customer-engagement-platform" target="_self" data-uuid="2b371b66-c4de-36b6-96d3-3496bba1c99a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Engagement Platform</strong> </span> <p class="navigation-dropdown-link-description"> Build durable customer relationships with personalized, data-driven engagement </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/cpaas" target="_self" data-uuid="57942c20-35e2-348b-ae14-03e10e3fd1f8">Communication</a> <a href="/en-us/customer-data-platform" target="_self" data-uuid="2ffd8303-febf-374d-b9cd-21f8efc6cfbc">Customer Data</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/trust-center" target="_self" data-uuid="8f381764-d1ce-3b8a-8474-a51f92736382"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Trust Center</strong> </span> <p class="navigation-dropdown-link-description"> Twilio’s security, data privacy, regulatory compliance, and resiliency policies. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/super-network" target="_blank" data-uuid="9689eb37-400d-3cf8-8476-5b380363d2f6"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Super Network</strong> </span> <p class="navigation-dropdown-link-description"> Simplify, strengthen and unite carrier communication networks using software. </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <span>Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/resource-center" target="_self" data-uuid="cacae192-dd0a-37a1-83f9-3062a802ce39"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Resource Center</strong> </span> <p class="navigation-dropdown-link-description"> Browse our content library for more resources on how you can create lasting customer relationships </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://customers.twilio.com/en-us" target="_self" data-uuid="70f2a22e-4399-3d83-9677-76decb0dc8d9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Stories</strong> </span> <p class="navigation-dropdown-link-description"> See what customers are building with Twilio </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog" target="_self" data-uuid="d72bede0-4aad-3cb7-8892-91ed84e6b26f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Blog</strong> </span> <p class="navigation-dropdown-link-description"> Explore the latest product updates, technical tutorials, and best practices </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/state-of-customer-engagement" target="_self" data-uuid="1084fc5e-4007-379e-9cff-44bd42fcc506"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>State of Customer Engagement</strong> </span> <p class="navigation-dropdown-link-description"> See the top trends shaping customer engagement in our annual report </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/events" target="_self" data-uuid="a6a76a7a-4d32-3482-bbd1-2ff679aad5f0"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Events</strong> </span> <p class="navigation-dropdown-link-description"> Join upcoming group events </p> </div> </a> </li> </ul> </div> </div> </li> <li> <button aria-expanded="false" aria-controls="navigation-dropdown-4" data-nav-id="4" class="navigation-link" id="navigation-link-4"> Pricing </button> <div data-nav-id="4" aria-labelledby="navigation-link-4" id="navigation-dropdown-4" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/pricing/messaging" target="_self" data-uuid="96d65f20-32f4-3713-96fe-2cf821d8583f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messagingx"> <g class="path-fill"> <path d="M14.232 46.958c-.53 0-1.083-.127-1.592-.36a3.69 3.69 0 0 1-2.145-3.356V36H7.309A5.311 5.311 0 0 1 2 30.691V11.578c0-2.93 2.379-5.31 5.31-5.31h31.854c2.931 0 5.31 2.38 5.31 5.31v10.894a2.13 2.13 0 0 1-2.124 2.124 2.13 2.13 0 0 1-2.124-2.124V11.578c0-.595-.467-1.062-1.062-1.062H7.33c-.594 0-1.061.467-1.061 1.062V30.69c0 .595.467 1.062 1.061 1.062h5.31a2.13 2.13 0 0 1 2.123 2.123v8.22l9.26-7.731a2.126 2.126 0 1 1 2.718 3.27l-10.13 8.453c-.68.573-1.53.87-2.379.87Z"/> <path d="M59.891 65.732a3.743 3.743 0 0 1-2.081-.637l-9.918-7.858h-2.59c-8.644 0-15.673-6.668-15.673-14.866 0-8.197 7.03-14.866 15.672-14.866h9.026C62.971 27.505 70 34.174 70 42.371c0 4.417-2.421 8.814-6.371 11.744v7.922c0 1.38-.765 2.633-1.975 3.27a3.638 3.638 0 0 1-1.742.425h-.02ZM48.636 52.99c.488 0 .934.17 1.316.467l9.408 7.454V52.99c0-.722.361-1.402.977-1.784 3.313-2.124 5.394-5.5 5.394-8.835 0-5.861-5.118-10.618-11.425-10.618H45.28c-6.286 0-11.425 4.757-11.425 10.618 0 5.862 5.118 10.619 11.425 10.619h3.356Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/sms/pricing/us" target="_self" data-uuid="cd19858a-b596-31db-9a4a-dc77079ca25d">SMS</a> <a href="/en-us/whatsapp/pricing" target="_self" data-uuid="33e93917-7fa5-30a6-8a19-d4217e896bfc">Whatsapp</a> <a href="/en-us/messaging/pricing/conversations-api" target="_self" data-uuid="fb1d6fd9-94bd-300a-bfe1-81d2b8e9fe94">Conversations</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_blank" data-uuid="a329ca03-44e4-36a3-b1d5-690c9338daf9"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice/pricing/us" target="_self" data-uuid="c4056d19-2a2f-3b73-a207-d78e69f85132"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Programmable Voice logo</title> <g class="twilio_programmable-voice"> <path d="M54.384 67.979a5.27 5.27 0 0 1-2.669-.734 138.575 138.575 0 0 1-15.78-10.953c-4.056-3.337-7.271-6.211-10.087-9.023-2.816-2.811-5.926-6.252-9.456-10.491-2.857-3.525-7.354-9.694-10.695-15.506a5.265 5.265 0 0 1 .84-6.337l8.447-8.456c1.997-1.972 5.443-1.972 7.439 0l10.212 10.198a5.217 5.217 0 0 1 1.534 3.714 5.217 5.217 0 0 1-1.534 3.714l-2.794 2.79c2.857 3.588 5.337 6.379 7.774 8.813 2.816 2.812 5.569 5.288 8.405 7.554l2.795-2.791c2.038-2.035 5.38-2.056 7.439 0l10.212 10.218A5.217 5.217 0 0 1 68 54.403a5.217 5.217 0 0 1-1.534 3.714l-8.342 8.33A5.27 5.27 0 0 1 54.384 68v-.021ZM18.683 9.165a.986.986 0 0 0-.736.315L9.5 17.894c-.336.336-.4.86-.168 1.28 3.215 5.602 7.564 11.54 10.296 14.94 3.425 4.112 6.43 7.448 9.183 10.176 2.732 2.727 5.82 5.497 9.77 8.729a134.385 134.385 0 0 0 15.277 10.617c.4.23.946.167 1.282-.168l8.342-8.33c.273-.273.315-.588.315-.735a1.02 1.02 0 0 0-.315-.734L53.27 43.45a1.08 1.08 0 0 0-1.492 0l-4.14 4.133a2.095 2.095 0 0 1-2.794.147l-1.471-1.175a102.691 102.691 0 0 1-8.741-7.869c-2.543-2.538-5.128-5.455-8.09-9.148l-1.177-1.469a2.087 2.087 0 0 1 .147-2.79l4.118-4.134a1.05 1.05 0 0 0 .316-.734 1.02 1.02 0 0 0-.316-.735L19.44 9.46a1.056 1.056 0 0 0-.736-.315h-.021v.021Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice/conference/pricing" target="_self" data-uuid="bdf5bad8-839c-3cc2-befc-caefedbefa87">Conferencing</a> <a href="/en-us/sip-trunking/pricing/us" target="_self" data-uuid="a36943fb-5aa4-39dc-961b-51e70e40efb0">SIP trunking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/verify/pricing" target="_self" data-uuid="5c910363-d68b-3e0a-875a-7b333197fadb"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/lookup/pricing" target="_self" data-uuid="764f3144-e164-3216-a6ac-db00e0e38fc0"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless/pricing" target="_self" data-uuid="2aba174c-e04e-35fb-9be8-8df21e8f3bcc"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video/pricing" target="_self" data-uuid="7bd70d75-cf69-30ce-9ae5-ea9730e53641"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex/pricing" target="_self" data-uuid="454d3fdf-99a1-35d7-ac19-b3c0e80a9372"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/pricing/" target="_blank" data-uuid="6f4a34e1-7640-361d-a7ce-70ee86701cb6"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_self" data-uuid="b30a861c-7875-3e06-81b4-e6e9991f918f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/pricing" target="_blank" class="button button-secondary">See all pricing</a> </div> </div> </div> </li> </ul> <div class="navigation-right"> <div class="navigation-search-container"> <button type="button" class="navigation-search-button" aria-expanded="false" aria-label="Search"> <svg viewBox="0 0 40 40"> <path d="M26.804 29.01c-2.832 2.34-6.465 3.746-10.426 3.746C7.333 32.756 0 25.424 0 16.378 0 7.333 7.333 0 16.378 0c9.046 0 16.378 7.333 16.378 16.378 0 3.96-1.406 7.594-3.746 10.426l10.534 10.534c.607.607.61 1.59-.004 2.202-.61.61-1.597.61-2.202.004L26.804 29.01zm-10.426.627c7.323 0 13.26-5.936 13.26-13.26 0-7.32-5.937-13.257-13.26-13.257C9.056 3.12 3.12 9.056 3.12 16.378c0 7.323 5.936 13.26 13.258 13.26z"></path> </svg> </button> <div class="navigation-search-viewport" aria-hidden="true" data-results-url="/content/twilio-com/global/en-us/search-results.html" data-empty-text="No results"> <div data-search-app-id="ZSUJLF71OK" data-search-api-key="2b15157d51ab026b3a4b8ced539381a4" data-search-index-id="twiliocom_aem_prod_en-us" class="algolia-search" id="search-box"> </div> <div class="navigation-search-dropdown shadow-card" aria-hidden="true"> <div class="algolia-search-hits" id="search-hits"></div> <div class="algolia-search-policy"> <p>Data is collected based on search terms. <a href="/en-us/legal/privacy" target="_self" rel="noopener noreferrer">Privacy Policy</a></p> </div> </div> </div> </div> <ul class="navigation-buttons" role="list"> <li class="button-container small"> <a href="/en-us/help/sales" data-uuid="dc9a3d55-9388-32e0-822e-733230ff3c95" class="button button-secondary navigation-button-sales">Contact sales</a> </li> <li class="button-container small"> <a href="https://www.twilio.com/try-twilio" data-uuid="90f0df6f-7d99-3ce7-af48-a59c3e97c5da" class="button button-primary">Start for free</a> </li> <li class="button-container small"> <button class="button button-secondary open-mobile-menu navigation-menu">Menu</button> </li> </ul> </div> <button class="navigation-mobile-close hide-lg-up" aria-label="Close Menu"></button> </div> <div class="navigation-mobile-menu"> <div class="navigation-accordion" data-results-url="/content/twilio-com/global/en-us/search-results.html"> <div class="navigation-search-container"> <div data-search-app-id="ZSUJLF71OK" data-search-api-key="2b15157d51ab026b3a4b8ced539381a4" data-search-index-id="twiliocom_aem_prod_en-us" class="algolia-search" id="search-box-mobile"> </div> <div class="navigation-search-dropdown shadow-card" aria-hidden="true"> <div class="algolia-search-hits" id="search-hits-mobile"></div> <div class="algolia-search-policy"> <p>Data is collected based on search terms. <a href="/en-us/legal/privacy" target="_self" rel="noopener noreferrer">Privacy Policy</a></p> </div> </div> </div> <ul class="navigation-accordion-items" role="list"> <li class="navigation-accordion-item"> <button data-nav-id="0" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content0" id="navigation-accordion-button0"> <span>Products</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content0" aria-labelledby="navigation-accordion-button0"> <div data-nav-id="0" aria-labelledby="navigation-link-0" id="navigation-dropdown-0" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/messaging" target="_self" data-uuid="c65ba57f-0180-378b-a5a5-4f81c8d14373"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messaging"> <path d="M18.511 66.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 48.187V16.314A5.314 5.314 0 0 1 7.313 11h57.374A5.314 5.314 0 0 1 70 16.313v31.875a5.314 5.314 0 0 1-5.313 5.312H34.683L20.955 65.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 15.25c-.595 0-1.063.467-1.063 1.063v31.875c0 .594.468 1.062 1.063 1.062h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 49.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V16.313c0-.595-.468-1.063-1.063-1.063H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> <p class="navigation-dropdown-link-description"> Send and receive multichannel text and media messages in 180+ countries </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/messaging/channels/sms" target="_self" data-uuid="f2c3345d-3fa1-33d2-ac50-e682e778a0d8">SMS</a> <a href="/en-us/messaging/channels/whatsapp" target="_self" data-uuid="afe9c931-96ed-3c7a-895b-671a04507508">WhatsApp</a> <a href="/en-us/messaging/conversations-api" target="_self" data-uuid="4dc05265-7e3a-37f8-85bb-5f6587fdc22f">Conversations</a> <a href="/en-us/messaging/channels/rcs" target="_self" data-uuid="9e18930c-b023-39e8-b333-75606e8d9231">RCS</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice" target="_self" data-uuid="fbdaf169-d9be-33ff-9a3b-edc7ad68de86"> <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M25.6264 34.6385L25.659 34.5419L35.4121 7.04017C36.622 3.6285 41.698 4.49252 41.698 8.11013L41.6978 29.4478L44.4808 29.4481C46.6711 29.4481 48.218 31.5627 47.5692 33.6229L47.5372 33.7194L36.7466 64.6588C35.5514 68.0857 30.4551 67.2318 30.4551 63.6046L30.4548 38.8287L28.7099 38.8289C26.5126 38.8289 24.965 36.7018 25.6264 34.6385ZM38.4629 32.6652V8.11013L28.7099 35.6118H33.6902V63.6046L44.4808 32.6652H38.4629ZM16.7287 15.2802C16.693 14.4288 15.9908 13.7464 15.1246 13.74C14.2313 13.7334 13.5018 14.4483 13.4951 15.3366L13.1918 56.0007L13.1932 56.081C13.2289 56.9324 13.9311 57.6147 14.7973 57.6212C15.6906 57.6277 16.4202 56.9129 16.4268 56.0246L16.7301 15.3605L16.7287 15.2802ZM1.61752 23.7446C2.48379 23.7446 3.191 24.4218 3.23307 25.2729L3.23505 25.3531V47.9701C3.23505 48.8585 2.51086 49.5787 1.61752 49.5787C0.75126 49.5787 0.0440456 48.9015 0.00197953 48.0504L0 47.9701V25.3531C0 24.4648 0.72419 23.7446 1.61752 23.7446ZM70.3825 23.7446C71.2487 23.7446 71.9559 24.4218 71.998 25.2729L72 25.3531V47.9701C72 48.8585 71.2758 49.5787 70.3825 49.5787C69.5162 49.5787 68.809 48.9015 68.7669 48.0504L68.7649 47.9701V25.3531C68.7649 24.4648 69.4891 23.7446 70.3825 23.7446ZM58.0305 13.74C58.8967 13.7465 59.5989 14.4288 59.6346 15.2802L59.636 15.3605L59.3327 56.0246C59.3261 56.9129 58.5965 57.6277 57.7032 57.6212C56.837 57.6148 56.1348 56.9324 56.0991 56.081L56.0977 56.0007L56.401 15.3366C56.4076 14.4483 57.1372 13.7335 58.0305 13.74Z" fill="#121C2D"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> <p class="navigation-dropdown-link-description"> Make, receive, and monitor calls around the world </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice" target="_self" data-uuid="85a51b0c-4d53-387b-a7ae-907acf893d72">PSTN</a> <a href="/en-us/sip-trunking" target="_self" data-uuid="9bc860ef-c600-35c7-8472-aba61c48de31">SIP Trunking</a> <a href="/en-us/voice-sdk" target="_self" data-uuid="eaa2af1d-a6c5-313d-ba19-d1c7ab1ee858">SDK</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="09ea660c-4bb0-3472-9b1c-62d7726f31f7"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> <p class="navigation-dropdown-link-description"> Globally-managed multichannel 2FA and passwordless authentication </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="9ddfe08b-e121-3904-99a3-e29de8ba0d43"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> <p class="navigation-dropdown-link-description"> Know your customer and assess identity risk with real-time phone intelligence </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/email-api" target="_self" data-uuid="ae4a1f31-bb99-3afc-a76e-3d73bfd77527"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> <p class="navigation-dropdown-link-description"> Deliver email messages reliably at scale with SendGrid </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless" target="_self" data-uuid="ac64ad4a-b6e1-3b67-bc3f-9c582536609c"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Task Router logo</title> <g class="twilio_task-router"> <path d="M57.25 27.75 70 21.375 57.25 15v12.75ZM53 51.125A2.131 2.131 0 0 0 50.875 49H48.75c-6.8 0-10.625-5.95-14.45-12.75 3.825-6.8 7.65-12.75 14.45-12.75h2.125A2.131 2.131 0 0 0 53 21.375a2.131 2.131 0 0 0-2.125-2.125H48.75c-8.288 0-13.175 6.163-17 12.75-3.825-6.587-8.712-12.75-17-12.75H4.125A2.131 2.131 0 0 0 2 21.375 2.13 2.13 0 0 0 4.125 23.5H14.75c6.8 0 10.625 5.95 14.45 12.75C25.375 43.05 21.55 49 14.75 49H4.125A2.131 2.131 0 0 0 2 51.125a2.13 2.13 0 0 0 2.125 2.125H14.75c8.288 0 13.175-6.163 17-12.75 3.825 6.587 8.712 12.75 17 12.75h2.125A2.131 2.131 0 0 0 53 51.125Zm4.25 6.375L70 51.125 57.25 44.75V57.5Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> <p class="navigation-dropdown-link-description"> Build, deploy, and run apps with Twilio’s serverless environment and visual builder </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/phone-numbers" target="_self" data-uuid="bc7654e5-0721-3c82-91e0-a3cbe7e25011"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Phone Numbers logo</title> <g class="twilio_phone-numbers"> <g class="path-fill"> <path d="M61.233 22.531H50.402L52.923 4.64a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L45.726 22.53h-13.84l2.522-17.89a2.304 2.304 0 0 0-1.967-2.615c-1.296-.186-2.43.694-2.615 1.967L27.21 22.53H12.63a2.321 2.321 0 0 0-2.314 2.315 2.321 2.321 0 0 0 2.314 2.314h13.933L24.295 43.36h-13.98A2.321 2.321 0 0 0 8 45.676a2.321 2.321 0 0 0 2.315 2.314h13.308l-2.685 19.05a2.304 2.304 0 0 0 1.967 2.615h.324c1.134 0 2.13-.833 2.292-1.99l2.777-19.697h30.62a2.321 2.321 0 0 0 2.315-2.314 2.321 2.321 0 0 0-2.314-2.315H47.462l2.268-16.201h11.48a2.321 2.321 0 0 0 2.315-2.315 2.321 2.321 0 0 0-2.315-2.314l.023.023Zm-18.446 20.83h-13.84l2.267-16.201h13.841l-2.268 16.201Z"/> <path d="M41.77 69.977h-.325a2.304 2.304 0 0 1-1.967-2.615l1.852-13.17c.185-1.273 1.32-2.153 2.615-1.967a2.304 2.304 0 0 1 1.968 2.615L44.06 68.01A2.315 2.315 0 0 1 41.77 70v-.023Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Phone Numbers</strong> </span> <p class="navigation-dropdown-link-description"> Access local, national, and toll-free phone numbers </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/phone-numbers/toll-free" target="_self" data-uuid="bcdfd127-e417-3f55-8d47-8c519354096c">Toll-Free</a> <a href="/en-us/a2p-10dlc" target="_self" data-uuid="a4625ef8-f987-3ceb-b706-0e20b72ec175">10DLC</a> <a href="/en-us/messaging/channels/sms/short-codes" target="_self" data-uuid="6a6c6b4f-bd9b-3032-89e9-f8878c6c6bca">Short Codes</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video" target="_self" data-uuid="18154e03-2a6c-3e04-9d6a-fe839e1d0d88"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> <p class="navigation-dropdown-link-description"> Connect virtually with secure, high-quality video calling at global scale </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex" target="_self" data-uuid="01b27b9e-4068-385b-bad2-abbdac206df3"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> <p class="navigation-dropdown-link-description"> Digital engagement center for customer service and sales </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="5c2d9c5a-08e1-39ea-b937-91b213ac174b">Contact center</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/engage" target="_self" data-uuid="8523f978-5f68-3011-aad2-8e0c25c78e27"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Engage</strong> </span> <p class="navigation-dropdown-link-description"> Create multi-channel campaigns with a unified data-first platform </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/sendgrid/marketing-campaigns" target="_self" data-uuid="b4a7bbcb-e911-309b-99a4-553796478f8a"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns </strong> </span> <p class="navigation-dropdown-link-description"> Create and manage email marketing campaigns with SendGrid </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section has-border"> <h5 class="navigation-dropdown-title"> <span>Customer Data</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/" target="_blank" data-uuid="9a6fde8b-0d94-3c2e-8437-c8659a43ba63"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Segment logo</title> <g class="segment"> <path d="M65.64 23.242H31.876a2.254 2.254 0 0 0-2.254 2.254v3.998a2.254 2.254 0 0 0 2.254 2.253H65.64a2.254 2.254 0 0 0 2.254-2.253v-3.998a2.254 2.254 0 0 0-2.254-2.254ZM40.125 40.253H6.359a2.254 2.254 0 0 0-2.254 2.254v3.997a2.254 2.254 0 0 0 2.254 2.254h33.766a2.254 2.254 0 0 0 2.254-2.254v-3.997a2.254 2.254 0 0 0-2.254-2.254ZM16.863 63.642a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505Zm38.274-46.779a4.253 4.253 0 1 0 0-8.505 4.253 4.253 0 0 0 0 8.505ZM36 61.516c-2.382 0-4.7-.34-6.89-.978-1.041-.298-2.147.298-2.53 1.318l-1.446 3.998a2.137 2.137 0 0 0 1.425 2.785A33.775 33.775 0 0 0 35.999 70c13.886 0 25.772-8.335 31.066-20.243.51-1.148-.02-2.487-1.212-2.913l-3.997-1.467c-1.02-.383-2.19.085-2.637 1.063C55.222 55.286 46.313 61.473 36 61.473v.043Zm0-51.032c2.381 0 4.7.34 6.89.978 1.041.298 2.147-.297 2.53-1.318l1.445-3.998a2.137 2.137 0 0 0-1.424-2.785A33.776 33.776 0 0 0 36 2c-13.885-.021-25.771 8.314-31.066 20.221-.51 1.149.022 2.488 1.212 2.913l3.998 1.468c1.02.382 2.19-.085 2.636-1.064C16.778 16.694 25.687 10.505 36 10.505v-.02Z" class="path-fill fill-path"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify your customer data with Segment CDP to power personalized engagement </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/connections" target="_blank" data-uuid="80c6422a-7ea3-39a4-9952-06c6846c86e0"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 6.85714C2 4.17462 4.17462 2 6.85714 2H65.1429C67.8255 2 70 4.17462 70 6.85714V14.1429C70 16.8254 67.8255 19 65.1429 19H38.0242C35.3416 19 33.1671 21.1746 33.1671 23.8571V42.476C33.1671 45.1586 30.9923 47.3331 28.3097 47.3331H6.85714C4.17462 47.3331 2 45.1586 2 42.476V6.85714ZM38.8329 29.5242C38.8329 26.8416 41.0077 24.667 43.6903 24.667H65.1429C67.8255 24.667 70 26.8416 70 29.5242V65.1431C70 67.8254 67.8255 70.0002 65.1429 70.0002H6.85714C4.17462 70.0002 2 67.8254 2 65.1431V57.8573C2 55.1747 4.17462 53.0002 6.85714 53.0002H33.9758C36.6584 53.0002 38.8329 50.8254 38.8329 48.1431V29.5242Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Connections ↗</strong> </span> <p class="navigation-dropdown-link-description"> Integrate web and mobile app data with a single API </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/reverse-etl" target="_blank" data-uuid="dd5d0700-bf87-33e5-aba1-83472ef7ffb7">Reverse ETL</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/protocols" target="_blank" data-uuid="04efcd9f-8d7b-3df3-b1f4-b48e000751cc"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Cloud with an upload download symbol</title> <g class="networks_cloud-upload-download"> <path fill-rule="evenodd" d="M24.799 2.006A23.31 23.31 0 0 1 47.572 18.39a15.85 15.85 0 0 1 21.016 7.886 15.857 15.857 0 0 1-10.59 21.922 2 2 0 1 1-.971-3.88 11.852 11.852 0 0 0 8.972-11.354 11.857 11.857 0 0 0-13.828-11.836 11.85 11.85 0 0 0-4.767 1.94 2 2 0 0 1-3.105-1.28A19.318 19.318 0 0 0 33.672 7.904 19.309 19.309 0 0 0 6.188 22.628a19.32 19.32 0 0 0 5.667 16.542 2 2 0 1 1-2.787 2.87 23.317 23.317 0 0 1 15.73-40.034Zm.55 34.152a2 2 0 0 1 1.414.586l8.525 8.526a2 2 0 1 1-2.829 2.828l-5.11-5.111V68a2 2 0 1 1-4 0V42.987l-5.11 5.111a2 2 0 1 1-2.83-2.828l8.525-8.526a2 2 0 0 1 1.415-.586Zm21.312 0a2 2 0 0 1 2 2V63.17l5.11-5.111a2 2 0 1 1 2.829 2.828l-8.525 8.526a2 2 0 0 1-2.829 0l-8.525-8.526a2 2 0 1 1 2.83-2.828l5.11 5.11v-25.01a2 2 0 0 1 2-2Z" class="path-fill" clip-rule="evenodd"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Protocols ↗</strong> </span> <p class="navigation-dropdown-link-description"> Protect the integrity of your data </p> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/unify" target="_blank" data-uuid="51b743b4-fbc4-3f37-bc58-92bb4d9cee95"> <svg width="72" height="72" viewBox="0 0 72 72" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M15.6794 21.5625C15.6794 12.1391 23.3118 4.5 32.7269 4.5C33.4512 4.5 34.0382 5.08763 34.0382 5.8125V37.3126C34.0382 38.0375 33.4512 38.6249 32.7269 38.6249C23.3118 38.6249 15.6794 30.9858 15.6794 21.5625ZM39.2835 28.125C42.9048 28.125 45.8404 25.1868 45.8404 21.5625C45.8404 17.9381 42.9048 15 39.2835 15C39.0932 15.0013 38.9032 15.0144 38.7144 15.0394C38.527 15.0644 38.338 15.0071 38.1958 14.8824C38.0536 14.7577 37.9722 14.5776 37.9722 14.3884V5.8125C37.9722 5.08763 38.5594 4.5 39.2835 4.5C40.236 4.50822 41.1861 4.59603 42.124 4.7625C42.7565 4.86378 43.2234 5.40763 43.2281 6.04875V8.60813C43.2287 8.8851 43.4029 9.13194 43.6635 9.225C44.0922 9.37699 44.5125 9.55225 44.9224 9.75001C45.1741 9.86329 45.4699 9.80661 45.662 9.60826L47.4665 7.80488C47.9198 7.3517 48.6341 7.29287 49.1554 7.66575C50.7093 8.77081 52.0667 10.1293 53.1708 11.6846C53.5427 12.207 53.4827 12.922 53.0292 13.3751L51.2273 15.1785C51.031 15.3759 50.9805 15.6758 51.1014 15.9266C51.2956 16.3387 51.4712 16.7614 51.626 17.1892C51.719 17.4501 51.9656 17.6245 52.2423 17.625H54.7836C55.4238 17.6251 55.9703 18.0878 56.0767 18.7196C56.416 20.5997 56.416 22.5253 56.0767 24.4054C55.9703 25.0372 55.4238 25.4999 54.7836 25.5001H52.2423C51.9615 25.4951 51.7091 25.6708 51.6155 25.9357C51.4633 26.3628 51.2885 26.7827 51.091 27.1957C50.9701 27.4466 51.0206 27.7464 51.2169 27.9439L53.0239 29.7419C53.476 30.1947 53.5358 30.908 53.1655 31.4299C52.0614 32.9858 50.7042 34.3453 49.1501 35.4513C48.6282 35.8236 47.9139 35.7636 47.4611 35.3096L45.6567 33.5062C45.4595 33.3097 45.1599 33.2593 44.9092 33.3802C44.499 33.5769 44.0789 33.7521 43.6503 33.9053C43.3888 33.9986 43.2145 34.2468 43.2151 34.5248V37.0684C43.2149 37.7091 42.7526 38.2562 42.1214 38.3625C41.1835 38.5289 40.2334 38.6167 39.281 38.6249C38.5567 38.6249 37.9696 38.0375 37.9696 37.3126V28.6316C37.9694 28.4644 38.042 28.3051 38.1684 28.1959C38.2947 28.0864 38.4627 28.0376 38.6279 28.062C38.8448 28.0976 39.0639 28.1187 39.2835 28.125ZM32.7269 39.9375C18.2488 39.9534 6.5159 51.6966 6.5 66.1874C6.5 66.9123 7.08711 67.5 7.81134 67.5H32.7269C33.4512 67.5 34.0382 66.9123 34.0382 66.1874V41.2501C34.0382 40.5252 33.4512 39.9375 32.7269 39.9375ZM63.8582 60.9376C64.5029 60.9429 65.0506 61.4112 65.1564 62.0479C65.3806 63.4306 65.4955 64.8288 65.5 66.2296C65.4746 66.936 64.8949 67.4953 64.1886 67.4947H51.5998C51.2688 67.4917 50.9949 67.2368 50.9677 66.9068C50.3065 60.3387 45.1167 55.1445 38.5545 54.4826C38.2247 54.4555 37.97 54.1812 37.9671 53.8501V41.2501C37.9667 40.5392 38.5317 39.9574 39.2417 39.9375C41.1171 39.9371 42.9872 40.1367 44.8201 40.5334C45.4152 40.6716 45.8363 41.2028 45.8351 41.8143V45.7754C45.8349 46.0542 46.0105 46.3025 46.2731 46.395C47.2649 46.746 48.2293 47.1707 49.158 47.6654C49.4123 47.8017 49.7258 47.7546 49.9291 47.5501L52.6435 44.8619C53.0874 44.418 53.7834 44.3508 54.3038 44.7019C57.3678 46.8439 59.9373 49.6188 61.8387 52.8393C62.1303 53.352 62.0446 53.9961 61.629 54.4143L58.7439 57.3019C58.5531 57.4905 58.4969 57.7769 58.6023 58.0238C58.9423 58.8176 59.2322 59.6321 59.4704 60.4623C59.552 60.7438 59.8097 60.9374 60.1025 60.9376H63.8582Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Unify ↗</strong> </span> <p class="navigation-dropdown-link-description"> Unify customer data across every channel </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="https://segment.com/product/profiles-sync/" target="_blank" data-uuid="df9276fe-890c-3edc-a15e-2191450e6a5f">Profiles Sync</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/product/twilio-engage/journeys" target="_blank" data-uuid="52a31c29-b4ce-3b9c-81ff-a3d8ceb9630a"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Journeys ↗</strong> </span> <p class="navigation-dropdown-link-description"> Orchestrate multichannel customer journeys </p> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/products" target="_self" class="button button-secondary">See all products</a> </div> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="1" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content1" id="navigation-accordion-button1"> <span>Solutions</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content1" aria-labelledby="navigation-accordion-button1"> <div data-nav-id="1" aria-labelledby="navigation-link-1" id="navigation-dropdown-1" class="navigation-dropdown four-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Use Cases</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/user-verification-identity" target="_self" data-uuid="8a61b858-319b-3379-abd3-566a6abdcb14"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verification & identity</strong> </span> <p class="navigation-dropdown-link-description"> Add user verification to protect against fraud. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/fraud-prevention" target="_self" data-uuid="407b7bc2-53a5-3e33-9734-e199ad34fdd6">Fraud prevention</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/alerts-and-notifications" target="_self" data-uuid="80bd65b4-774c-34de-b134-036c4413b9c7"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Alerts & notifications</strong> </span> <p class="navigation-dropdown-link-description"> Deliver notifications across text, email, voice. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/use-cases/appointment-reminders" target="_self" data-uuid="78e8fd81-c6d5-367a-813c-71bed7f19bdd">Appointment reminders</a> <a href="/en-us/use-cases/lead-alerts" target="_self" data-uuid="8f4e1e8a-42be-3fba-9020-8fa3379fbefa">Lead alerts</a> <a href="/en-us/use-cases/mass-texting" target="_self" data-uuid="183e2e30-f42a-327a-96fa-b5b6361f460e">Mass texting</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/marketing-and-promotions" target="_self" data-uuid="d6bfc75d-ccaa-3499-b691-87560532b852"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing & promotions</strong> </span> <p class="navigation-dropdown-link-description"> Create multichannel marketing campaigns. </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="20e53019-744c-3125-853c-5c23c67fad10">SMS marketing</a> <a href="/en-us/use-cases/automated-customer-surveys" target="_self" data-uuid="b19035be-c429-37ee-9444-7459d9f739f3">Customer surveys</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/flex/use-cases/contact-center" target="_self" data-uuid="8164b46f-cfc8-3810-a421-ffb97109f50c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Contact Center</strong> </span> <p class="navigation-dropdown-link-description"> Provide personalized, data-driven service. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/use-cases/ivr" target="_self" data-uuid="51363291-2576-349e-a9d0-424155eda446"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>IVR & self-service</strong> </span> <p class="navigation-dropdown-link-description"> Set up a modern IVR with AI-enabled support. </p> </div> </a> <div class="navigation-dropdown-shortcut-links multiline"> <a href="/en-us/use-cases/call-tracking" target="_self" data-uuid="a708bb96-0908-3b37-a321-9aefff43b428">Call tracking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Teams</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/marketing" target="_self" data-uuid="13b41fbe-fd91-313f-84a9-66f96e8bea81"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Marketing</strong> </span> <p class="navigation-dropdown-link-description"> Keep customers engaged on any channel </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/product-and-engineering" target="_self" data-uuid="b00be778-d89d-3eb0-b749-8fdc42a670e1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Product & Engineering</strong> </span> <p class="navigation-dropdown-link-description"> Connect with target users reliably and securely </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/customer-experience" target="_self" data-uuid="0a87b1a4-059c-3755-9c39-40596a306f51"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Experience</strong> </span> <p class="navigation-dropdown-link-description"> Deliver personalized sales and support experiences at scale </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="17c80c23-dd41-30d2-af31-4cb01c9dbaf1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developers</strong> </span> <p class="navigation-dropdown-link-description"> Tutorials and docs to start building on Twilio </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Industries</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/financial-services" target="_self" data-uuid="7ae500c7-4ddc-331f-97c3-7466b653129b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Financial Services</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/healthcare" target="_self" data-uuid="4b84119b-4e11-3715-92d0-afb0ac35dc70"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Healthcare</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/hospitality" target="_self" data-uuid="fa74729a-8a7a-3830-a313-6b67c9d6a7a4"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Hospitality</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/public-sector" target="_self" data-uuid="52d2134e-9eaf-3f01-994f-d98a9fdbebc1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Public Sector</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/real-estate" target="_self" data-uuid="337d3dd2-b03c-3846-9f44-fcf9a88dc783"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Real Estate</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/solutions/retail" target="_self" data-uuid="4215e011-af2d-3e36-aaf1-cc991287c528"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Retail</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/solutions" target="_self" class="button button-secondary">See all solutions</a> </div> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>People shaking hands</title> <g class="users_handshake--circle"> <path fill-rule="evenodd" d="M11.96 60.04C18.38 66.46 26.92 70 36 70c9.08 0 17.62-3.54 24.04-9.96C66.46 53.62 70 45.08 70 36c0-9.08-3.54-17.62-9.96-24.04C53.62 5.54 45.08 2 36 2c-9.08 0-17.62 3.54-24.04 9.96C5.54 18.38 2 26.92 2 36c0 9.08 3.54 17.62 9.96 24.04Zm2.83-45.25C20.45 9.12 27.99 6 36 6c8.01 0 15.54 3.12 21.21 8.79a29.947 29.947 0 0 1 6 8.54h-4.55a5.397 5.397 0 0 0-1.415.134L44.75 18.54c-1-.37-2.05-.54-3.12-.47-1.06.06-2.09.34-3.01.82l-6.072 3.031a7.01 7.01 0 0 0-2.968-1.091c-1.19-.15-2.41.01-3.57.47l-8.637 3.684a5.337 5.337 0 0 0-.323-.314c-1.02-.92-2.33-1.38-3.71-1.33H8.791a30.13 30.13 0 0 1 5.999-8.55ZM7.266 27.34A30.046 30.046 0 0 0 6 36c0 2.98.432 5.893 1.265 8.67H13.5a1.241 1.241 0 0 0 1.31-1.12V28.46c-.03-.31-.17-.6-.41-.81-.25-.22-.56-.33-.9-.31H7.266ZM8.79 48.67h4.78l-.01.01c1.29 0 2.52-.46 3.49-1.33a5.3 5.3 0 0 0 .737-.81h2.743l8 6.11a4.308 4.308 0 0 0 3.12 1.3l-.02.01c1.01 0 1.98-.35 2.77-1l8.094-6.685 10.743-2.145a5.24 5.24 0 0 0 5.193 4.54h4.778a30.038 30.038 0 0 1-5.998 8.54C51.55 62.88 44.01 66 36 66c-8.01 0-15.54-3.13-21.21-8.79a29.947 29.947 0 0 1-6-8.54Zm55.944-4A30.086 30.086 0 0 0 66 36c0-2.98-.432-5.893-1.266-8.67H58.5c-.096 0-.191.008-.284.024-.155.087-.32.154-.493.197a1.27 1.27 0 0 0-.533.909v13.048c.014.133.013.265 0 .395v1.647a1.241 1.241 0 0 0 1.31 1.12h6.234ZM34.96 34h-.09c-.82-.01-1.62-.19-2.38-.53a6.33 6.33 0 0 1-1.99-1.41c-.57-.6-1-1.3-1.29-2.07a6.34 6.34 0 0 1 .249-5.121A3.12 3.12 0 0 0 27.54 25l-8.75 3.73v13.81h2.41c.44 0 .86.14 1.21.41l8.67 6.62c.1.08.2.17.29.27.06.07.15.11.24.12.1.01.18-.02.26-.08l8.204-6.776c.142-.163.31-.303.501-.414l3.415-2.82c.08-.06.13-.16.14-.26 0-.09-.01-.18-.06-.25l-5.665-6.29-1.135.48c-.75.31-1.53.46-2.32.46l.01-.01Zm12.867 7.134 5.373-1.072V28.26c.039-.67.202-1.314.478-1.905L43.31 22.27c-.44-.17-.94-.24-1.44-.21s-.99.16-1.44.4l-6.45 3.22c-.46.25-.85.69-1.05 1.23-.2.54-.2 1.13.01 1.66.11.3.27.54.47.76.2.21.44.38.71.5.26.11.53.17.8.18.27 0 .55-.05.81-.15l6.41-2.71c1.02-.43 2.19.04 2.62 1.06.43 1.02-.05 2.19-1.06 2.62l-1.397.59 4.807 5.34s.06.07.09.11c.7.91 1.02 2.04.89 3.18-.043.376-.131.74-.263 1.084Z" class="path-fill fill-path" clip-rule="evenodd"/> </g> </svg> <span>Partners</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners" target="_self" data-uuid="524095c8-b918-3482-890c-5f32b5dd5392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Find a partner</strong> </span> <p class="navigation-dropdown-link-description"> Work with a Twilio partner to buy or build the right solution </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/partners/become-a-partner" target="_self" data-uuid="e9e2abbd-08c9-3d71-a326-dea63713c4a5"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Partner with us</strong> </span> <p class="navigation-dropdown-link-description"> Join our Partner Program to build or sell Twilio solutions to your customers. </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="2" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content2" id="navigation-accordion-button2"> <span>Developers</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content2" aria-labelledby="navigation-accordion-button2"> <div data-nav-id="2" aria-labelledby="navigation-link-2" id="navigation-dropdown-2" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section blue"> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>An Open book</title> <g class="documents_book--open"> <path d="M35.995 67.5h-.029c-.263 0-.515-.058-.748-.164a1.946 1.946 0 0 1-.642-.454h-.01c-.146-.165-7.349-7.363-30.173-7.673-.943-.029-1.79-.396-2.42-1.053A3.412 3.412 0 0 1 1 55.75V7.95c0-.918.36-1.788 1.011-2.435.32-.329.71-.58 1.137-.754A3.32 3.32 0 0 1 4.49 4.5c19.305.251 28.297 5.276 31.505 7.672 3.208-2.396 12.2-7.42 31.506-7.672.495 0 .923.077 1.35.26.419.175.808.426 1.138.755A3.418 3.418 0 0 1 71 7.95v47.82c0 .889-.34 1.739-.962 2.396a3.435 3.435 0 0 1-2.392 1.053c-22.737.31-29.979 7.43-30.202 7.653-.03.039-.069.068-.107.106a.979.979 0 0 1-.156.126 1.973 1.973 0 0 1-.437.251 1.768 1.768 0 0 1-.603.135h-.136l-.01.01Zm1.944-51.927v46.168c4.287-2.541 13.123-6.107 29.163-6.387V8.374c-19.228.33-27.19 5.605-29.163 7.2ZM4.89 55.354c16.039.27 24.875 3.836 29.162 6.377V15.573c-1.944-1.575-9.906-6.87-29.163-7.198v46.98Zm39.923-7.807a1.933 1.933 0 0 1-.622-3.768 65.327 65.327 0 0 1 15.932-3.16 1.949 1.949 0 0 1 2.08 1.787 1.939 1.939 0 0 1-1.798 2.068 61.28 61.28 0 0 0-14.97 2.967 1.93 1.93 0 0 1-.612.096l-.01.01Zm-17.624 0c-.204 0-.408-.03-.612-.097a60.922 60.922 0 0 0-14.97-2.966 1.939 1.939 0 0 1-1.799-2.068c.078-1.063 1.02-1.855 2.08-1.788a65.422 65.422 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.445 1.945 1.945 0 0 1-1.847 1.323l-.01-.01Zm0-9.982c-.204 0-.408-.029-.612-.096a60.832 60.832 0 0 0-14.97-2.967 1.939 1.939 0 0 1-1.799-2.068c.078-1.062 1.02-1.845 2.08-1.787a65.327 65.327 0 0 1 15.933 3.16 1.925 1.925 0 0 1 1.225 2.444 1.945 1.945 0 0 1-1.847 1.324l-.01-.01Zm17.624 0a1.933 1.933 0 0 1-.622-3.768 65.331 65.331 0 0 1 15.932-3.16c1.06-.067 2.003.725 2.08 1.788a1.939 1.939 0 0 1-1.798 2.068 61.194 61.194 0 0 0-14.97 2.966 1.93 1.93 0 0 1-.612.097l-.01.01Z" class="path-fill fill-path"/> </g> </svg> <span>Documentation</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/flex" target="_self" data-uuid="202617e5-93a5-3f8d-a293-5fd07113423d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sms" target="_self" data-uuid="4a7d38b6-987a-3434-819a-8315ad35aa69"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>SMS</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/voice" target="_self" data-uuid="276792df-f5d6-374a-b4ac-ce3760668b6c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://docs.sendgrid.com/" target="_self" data-uuid="3a701880-504d-3d84-a4d2-19da3883139d"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/whatsapp" target="_self" data-uuid="11717582-95ce-36a6-b33c-aa4968c7816a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>WhatsApp API</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/sip-trunking" target="_self" data-uuid="9c18aca3-4bad-3cb7-b449-2fb09e0ee6de"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Elastic SIP Trunking</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/verify/api" target="_self" data-uuid="2216d993-093c-32a9-8311-c03d32122ee9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/serverless/functions-assets/functions" target="_self" data-uuid="cc54ec7e-db8f-3e55-a052-f3c6aa412514"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Functions</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/studio" target="_self" data-uuid="698bf00e-7d9d-36ee-9901-73eb234f7e79"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Studio</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/docs/twilio-cli/quickstart" target="_self" data-uuid="bd2d1990-cd6c-3a5b-8fde-660fa31e84ee"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio CLI</strong> </span> </div> </a> </li> </ul> <div class="button-container small inverse"> <a href="https://www.twilio.com/docs" target="_self" class="button button-secondary">See all docs</a> </div> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation">> <title>Two users in a circle</title> <g class="users_user-group--circle"> <path fill-rule="evenodd" d="M15.7 42.495c2.59 2.59 6.02 4.01 9.68 4.01s7.09-1.43 9.68-4.01c2.59-2.59 4.01-6.02 4.01-9.68 0-.548-.032-1.09-.095-1.626a1.966 1.966 0 0 0-.064-.474 13.598 13.598 0 0 0-3.851-7.58 13.584 13.584 0 0 0-9.68-4.01c-3.66 0-7.1 1.42-9.68 4.01a13.584 13.584 0 0 0-4.01 9.68c0 3.66 1.42 7.09 4.01 9.68Zm18.945-12.531a9.648 9.648 0 0 0-2.415-3.999 9.622 9.622 0 0 0-6.85-2.84c-2.59 0-5.02 1.01-6.85 2.84-.206.206-.4.419-.586.639a17.338 17.338 0 0 0 7.916 3.861c2.951.592 5.952.419 8.785-.501Zm.35 4.065a21.222 21.222 0 0 1-5.685.776v.01c-1.41 0-2.83-.14-4.24-.42a21.25 21.25 0 0 1-9.031-4.17 9.728 9.728 0 0 0-.349 2.59c0 2.59 1.01 5.02 2.84 6.85a9.622 9.622 0 0 0 6.85 2.84c2.59 0 5.02-1.01 6.85-2.84a9.615 9.615 0 0 0 2.765-5.636Z" clip-rule="evenodd" class="fill-path path-fill"/> <path fill-rule="evenodd" d="M36 69.875c-9.05 0-17.55-3.52-23.95-9.92-6.4-6.4-9.92-14.91-9.92-23.95s3.52-17.56 9.92-23.96c6.4-6.4 14.91-9.92 23.95-9.92s17.56 3.52 23.95 9.92c6.39 6.4 9.92 14.9 9.92 23.95 0 6.87-2.029 13.424-5.806 18.983a1.98 1.98 0 0 1-.282.408 34.297 34.297 0 0 1-3.832 4.559c-6.4 6.4-14.91 9.92-23.95 9.92v.01Zm26.011-19.146c2.524-4.442 3.869-9.484 3.869-14.724 0-7.97-3.11-15.48-8.75-21.12-5.64-5.64-13.15-8.75-21.13-8.75v-.01c-7.98 0-15.48 3.11-21.12 8.75-5.64 5.64-8.75 13.14-8.75 21.13 0 5.916 1.705 11.558 4.88 16.378a21.122 21.122 0 0 1 29.107.308 14.615 14.615 0 0 1 3.373-3.266 14.737 14.737 0 0 1 3.936-1.954 9.454 9.454 0 0 1-2.156-1.616 9.46 9.46 0 0 1-2.05-3.06 9.341 9.341 0 0 1-.72-3.61c0-1.24.24-2.46.72-3.61a9.46 9.46 0 0 1 2.05-3.06c.88-.88 1.91-1.57 3.06-2.04 2.3-.95 4.92-.95 7.22 0a9.46 9.46 0 0 1 3.06 2.05 9.46 9.46 0 0 1 2.05 3.06c.48 1.15.72 2.37.72 3.61 0 1.24-.24 2.46-.72 3.61a9.304 9.304 0 0 1-2.05 3.06 9.454 9.454 0 0 1-2.137 1.606 14.713 14.713 0 0 1 5.539 3.258Zm-19.216 5.138a10.766 10.766 0 0 1 8.165-5.062c1.86-.17 3.74.15 5.44.92a10.901 10.901 0 0 1 3.359 2.401 30.305 30.305 0 0 1-2.629 2.999A29.857 29.857 0 0 1 46.185 64.1a20.954 20.954 0 0 0-3.39-8.233Zm-3.788 1.614a17.043 17.043 0 0 1 3.298 7.73c-2.05.439-4.16.664-6.305.664-7.97 0-15.48-3.11-21.12-8.75a30.609 30.609 0 0 1-1.435-1.536 17.088 17.088 0 0 1 7.335-4.224c3.3-.92 6.77-.84 10.03.25a17.101 17.101 0 0 1 7.887 5.471c.086.143.19.276.31.395ZM51.94 33.745a5.395 5.395 0 0 0-3.84 1.59c-.51.51-.9 1.1-1.18 1.76a5.47 5.47 0 0 0 0 4.16c.27.66.67 1.26 1.18 1.76.51.51 1.1.9 1.76 1.18 1.33.55 2.83.55 4.16 0 .66-.27 1.26-.67 1.76-1.18.51-.51.9-1.1 1.18-1.76a5.47 5.47 0 0 0 0-4.16c-.27-.66-.67-1.26-1.18-1.76-.51-.51-1.1-.9-1.76-1.18a5.47 5.47 0 0 0-2.08-.41Z" clip-rule="evenodd" class="fill-path path-fill"/> </g> </svg> <span>Community</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/ahoy" target="_self" data-uuid="44e0ac6f-a865-3570-9b75-6c2a200146b9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Ahoy!</strong> </span> <p class="navigation-dropdown-link-description"> Get inspired by the latest from our developer community </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog/developers" target="_self" data-uuid="f39790d8-1e22-3926-8425-4854e425c140"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Developer Blog</strong> </span> <p class="navigation-dropdown-link-description"> Read tutorials, community projects, and product updates </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://stackoverflow.com/collectives/twilio" target="_self" data-uuid="50efaed5-3ef6-3f25-bdfe-cc3e5f66d63b"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Stack Overflow</strong> </span> <p class="navigation-dropdown-link-description"> Ask the Twilio community for help </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/champions" target="_self" data-uuid="517d626e-33c1-3931-8977-69ba8a6aa28f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Champions</strong> </span> <p class="navigation-dropdown-link-description"> Become a Twilio community Champion </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Wrench and screwdriver</title> <g class="etc_wrench-screwdriver"> <path class="path-fill fill-path" fill-rule="evenodd" d="M57.847 20.266a6.292 6.292 0 0 1-2.909-.705l-23.96 24.07 3.32 3.334c.367.37.57.856.57 1.37a1.96 1.96 0 0 1-.57 1.382L15.596 68.482a8.45 8.45 0 0 1-6.04 2.508h-.01a8.46 8.46 0 0 1-6.04-2.518A8.553 8.553 0 0 1 1 62.405c0-2.285.89-4.453 2.507-6.067l18.7-18.765a1.933 1.933 0 0 1 2.74 0l3.296 3.31 23.96-24.078a6.348 6.348 0 0 1-.696-2.908c0-1.701.658-3.305 1.859-4.501l7.782-7.827a1.933 1.933 0 0 1 2.74 0L70.12 7.82a1.933 1.933 0 0 1 0 2.742l-7.792 7.826a6.275 6.275 0 0 1-4.482 1.867v.01Zm-2.478-6.369c0 .662.262 1.284.726 1.75l.004.004c.93.93 2.553.939 3.49-.003L66.008 9.2l-3.49-3.505-6.422 6.442a2.476 2.476 0 0 0-.726 1.76ZM6.237 59.09l17.335-17.395 6.611 6.64L12.857 65.73a4.662 4.662 0 0 1-3.31 1.371 4.623 4.623 0 0 1-3.3-1.37 4.673 4.673 0 0 1-1.375-3.326c0-1.254.484-2.43 1.365-3.316Z" clip-rule="evenodd"/> <path class="path-fill fill-path" d="M21.84 30.64c.377.38.87.574 1.365.574l.01.02c.493 0 .987-.195 1.364-.574a1.954 1.954 0 0 0 0-2.752l-4.627-4.647a1.925 1.925 0 0 0-2.08-.438 9.06 9.06 0 0 1-4.066.603 8.97 8.97 0 0 1-7.163-4.716 10.9 10.9 0 0 0 2.923.068 10.75 10.75 0 0 0 6.37-3.092 10.877 10.877 0 0 0 3.068-6.407c.106-.982.077-1.974-.078-2.946a8.952 8.952 0 0 1 2.081 1.536 9.01 9.01 0 0 1 2.469 4.58 9.144 9.144 0 0 1-.436 5.192c-.28.72-.107 1.536.436 2.08l6.727 6.777a1.933 1.933 0 0 0 2.74 0 1.954 1.954 0 0 0 0-2.751l-5.886-5.921a13.06 13.06 0 0 0 .213-6.175 12.989 12.989 0 0 0-3.523-6.543 12.86 12.86 0 0 0-7.754-3.675 1.928 1.928 0 0 0-1.839.904 1.933 1.933 0 0 0 0 2.061 6.99 6.99 0 0 1 .997 4.434 6.912 6.912 0 0 1-1.965 4.093A6.884 6.884 0 0 1 9.111 14.9a6.835 6.835 0 0 1-4.413-1.002 1.95 1.95 0 0 0-2.053 0 1.933 1.933 0 0 0-.9 1.848 13.172 13.172 0 0 0 1.936 5.58 12.953 12.953 0 0 0 4.201 4.133 12.905 12.905 0 0 0 5.595 1.828c1.53.126 3.097-.03 4.578-.447l3.785 3.801ZM58.04 71c-2.516 0-4.994-.739-7.104-2.13a13.061 13.061 0 0 1-5.246-6.932 13.076 13.076 0 0 1-.126-7.467l-4.365-4.385a1.954 1.954 0 0 1 0-2.752 1.933 1.933 0 0 1 2.739 0l5.217 5.231c.542.545.716 1.371.436 2.09a9.182 9.182 0 0 0-.204 6.107 9.123 9.123 0 0 0 3.679 4.861 9.053 9.053 0 0 0 5.904 1.44 9.08 9.08 0 0 0 5.488-2.626 9.153 9.153 0 0 0 2.614-5.513c.213-2.08-.3-4.18-1.433-5.93a9.055 9.055 0 0 0-10.918-3.491 1.91 1.91 0 0 1-2.072-.438l-7.375-7.409a1.954 1.954 0 0 1 0-2.751 1.933 1.933 0 0 1 2.739 0l6.534 6.563a12.99 12.99 0 0 1 7.433.126 13.015 13.015 0 0 1 6.902 5.27 13.128 13.128 0 0 1 2.052 8.459 13.042 13.042 0 0 1-3.727 7.866A12.936 12.936 0 0 1 58.06 71h-.02Z"/> <path class="path-fill fill-path" d="M60.286 58.069a2.425 2.425 0 0 1-2.42 2.43 2.425 2.425 0 0 1-2.42-2.43 2.425 2.425 0 0 1 2.42-2.431 2.425 2.425 0 0 1 2.42 2.43Z"/> </g> </svg> <span>Tools & Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="https://www.twilio.com/code-exchange" target="_self" data-uuid="82f92ed1-c941-3e67-8f96-daa4bbbfa252"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>CodeExchange</strong> </span> <p class="navigation-dropdown-link-description"> Usable code samples for faster builds </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/changelog" target="_self" data-uuid="d406aef4-2fe8-3406-a0b4-d5e7d530f428"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Changelog</strong> </span> <p class="navigation-dropdown-link-description"> See updates and additions to Twilio products </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://status.twilio.com" target="_self" data-uuid="511e46da-8d07-3439-a9c2-60b8e1ff1392"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>API Status</strong> </span> <p class="navigation-dropdown-link-description"> Check real-time monitoring of APIs and all services </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/products/beta" target="_self" data-uuid="48e907ba-efae-30e7-bdcd-8beec988feab"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Beta Products and Features</strong> </span> <p class="navigation-dropdown-link-description"> Explore new launches and request access to early releases </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="3" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content3" id="navigation-accordion-button3"> <span>Why Twilio</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content3" aria-labelledby="navigation-accordion-button3"> <div data-nav-id="3" aria-labelledby="navigation-link-3" id="navigation-dropdown-3" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Company</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/why-twilio" target="_self" data-uuid="9a787b06-a28b-3280-9f6b-deea01bbc545"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Why Twilio</strong> </span> <p class="navigation-dropdown-link-description"> The trusted platform for data-driven customer engagement across any channel. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company" target="_self" data-uuid="a849a5d8-ff83-3d17-af32-7b9edfd56499"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>About Us</strong> </span> <p class="navigation-dropdown-link-description"> Twilio company page </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/values" target="_self" data-uuid="790c50bd-02f7-3684-9a34-dccc637c0787"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Magic</strong> </span> <p class="navigation-dropdown-link-description"> Twilio core values </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/company/diversity" target="_self" data-uuid="1bbd6dce-661a-3c54-81a1-d78659cb5b2c"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Diversity</strong> </span> <p class="navigation-dropdown-link-description"> Diversity, equity, and inclusion </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://investors.twilio.com" target="_self" data-uuid="f9b5d6ef-c537-36ee-afb7-46999b3632f1"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Investor Relations</strong> </span> <p class="navigation-dropdown-link-description"> Information for Twilio investors </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/press" target="_self" data-uuid="1b2fd53c-a7a5-32e0-8ad2-931a7dc28267"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Press & Media</strong> </span> <p class="navigation-dropdown-link-description"> Latest announcements and launches </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Our Platform</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/customer-engagement-platform" target="_self" data-uuid="2b371b66-c4de-36b6-96d3-3496bba1c99a"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Engagement Platform</strong> </span> <p class="navigation-dropdown-link-description"> Build durable customer relationships with personalized, data-driven engagement </p> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/cpaas" target="_self" data-uuid="57942c20-35e2-348b-ae14-03e10e3fd1f8">Communication</a> <a href="/en-us/customer-data-platform" target="_self" data-uuid="2ffd8303-febf-374d-b9cd-21f8efc6cfbc">Customer Data</a> </div> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/trust-center" target="_self" data-uuid="8f381764-d1ce-3b8a-8474-a51f92736382"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Trust Center</strong> </span> <p class="navigation-dropdown-link-description"> Twilio’s security, data privacy, regulatory compliance, and resiliency policies. </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/super-network" target="_blank" data-uuid="9689eb37-400d-3cf8-8476-5b380363d2f6"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong> Super Network</strong> </span> <p class="navigation-dropdown-link-description"> Simplify, strengthen and unite carrier communication networks using software. </p> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section gray"> <h5 class="navigation-dropdown-title"> <span>Resources</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="/en-us/resource-center" target="_self" data-uuid="cacae192-dd0a-37a1-83f9-3062a802ce39"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Resource Center</strong> </span> <p class="navigation-dropdown-link-description"> Browse our content library for more resources on how you can create lasting customer relationships </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://customers.twilio.com/en-us" target="_self" data-uuid="70f2a22e-4399-3d83-9677-76decb0dc8d9"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Customer Stories</strong> </span> <p class="navigation-dropdown-link-description"> See what customers are building with Twilio </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/blog" target="_self" data-uuid="d72bede0-4aad-3cb7-8892-91ed84e6b26f"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Blog</strong> </span> <p class="navigation-dropdown-link-description"> Explore the latest product updates, technical tutorials, and best practices </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/state-of-customer-engagement" target="_self" data-uuid="1084fc5e-4007-379e-9cff-44bd42fcc506"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>State of Customer Engagement</strong> </span> <p class="navigation-dropdown-link-description"> See the top trends shaping customer engagement in our annual report </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="/en-us/events" target="_self" data-uuid="a6a76a7a-4d32-3482-bbd1-2ff679aad5f0"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Events</strong> </span> <p class="navigation-dropdown-link-description"> Join upcoming group events </p> </div> </a> </li> </ul> </div> </div> </div> </li> <li class="navigation-accordion-item"> <button data-nav-id="4" class="navigation-accordion-button" aria-expanded="false" aria-controls="navigation-accordion-content4" id="navigation-accordion-button4"> <span>Pricing</span> <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.183058 0.719435C0.427136 0.475358 0.822864 0.475358 1.06694 0.719435L5 4.65249L8.93306 0.719435C9.17714 0.475358 9.57286 0.475358 9.81694 0.719435C10.061 0.963513 10.061 1.35924 9.81694 1.60332L5.68077 5.73949C5.6807 5.73956 5.68063 5.73963 5.68055 5.73971C5.50018 5.92042 5.25533 6.02198 5 6.02198C4.74473 6.02198 4.49995 5.92048 4.31959 5.73985C4.31947 5.73973 4.31935 5.73961 4.31923 5.73949L0.183058 1.60332C-0.0610194 1.35924 -0.0610194 0.963513 0.183058 0.719435Z" fill="#030B5D"/> </svg> </button> <div class="navigation-accordion-content" role="region" id="navigation-accordion-content4" aria-labelledby="navigation-accordion-button4"> <div data-nav-id="4" aria-labelledby="navigation-link-4" id="navigation-dropdown-4" class="navigation-dropdown three-columns"> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Communications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/pricing/messaging" target="_self" data-uuid="96d65f20-32f4-3713-96fe-2cf821d8583f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messagingx"> <g class="path-fill"> <path d="M14.232 46.958c-.53 0-1.083-.127-1.592-.36a3.69 3.69 0 0 1-2.145-3.356V36H7.309A5.311 5.311 0 0 1 2 30.691V11.578c0-2.93 2.379-5.31 5.31-5.31h31.854c2.931 0 5.31 2.38 5.31 5.31v10.894a2.13 2.13 0 0 1-2.124 2.124 2.13 2.13 0 0 1-2.124-2.124V11.578c0-.595-.467-1.062-1.062-1.062H7.33c-.594 0-1.061.467-1.061 1.062V30.69c0 .595.467 1.062 1.061 1.062h5.31a2.13 2.13 0 0 1 2.123 2.123v8.22l9.26-7.731a2.126 2.126 0 1 1 2.718 3.27l-10.13 8.453c-.68.573-1.53.87-2.379.87Z"/> <path d="M59.891 65.732a3.743 3.743 0 0 1-2.081-.637l-9.918-7.858h-2.59c-8.644 0-15.673-6.668-15.673-14.866 0-8.197 7.03-14.866 15.672-14.866h9.026C62.971 27.505 70 34.174 70 42.371c0 4.417-2.421 8.814-6.371 11.744v7.922c0 1.38-.765 2.633-1.975 3.27a3.638 3.638 0 0 1-1.742.425h-.02ZM48.636 52.99c.488 0 .934.17 1.316.467l9.408 7.454V52.99c0-.722.361-1.402.977-1.784 3.313-2.124 5.394-5.5 5.394-8.835 0-5.861-5.118-10.618-11.425-10.618H45.28c-6.286 0-11.425 4.757-11.425 10.618 0 5.862 5.118 10.619 11.425 10.619h3.356Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Messaging</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/sms/pricing/us" target="_self" data-uuid="cd19858a-b596-31db-9a4a-dc77079ca25d">SMS</a> <a href="/en-us/whatsapp/pricing" target="_self" data-uuid="33e93917-7fa5-30a6-8a19-d4217e896bfc">Whatsapp</a> <a href="/en-us/messaging/pricing/conversations-api" target="_self" data-uuid="fb1d6fd9-94bd-300a-bfe1-81d2b8e9fe94">Conversations</a> </div> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_blank" data-uuid="a329ca03-44e4-36a3-b1d5-690c9338daf9"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio SendGrid Email API logo</title> <g class="twilio_sendgrid-email-api"> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.25 6.25C29.1249 6.25 29.0031 6.29755 28.9003 6.4003C28.7975 6.50306 28.75 6.62494 28.75 6.75V20.25C28.75 20.3751 28.7975 20.4969 28.9003 20.5997C29.0031 20.7025 29.1249 20.75 29.25 20.75H42.75C47.4341 20.75 51.25 24.5659 51.25 29.25V42.75C51.25 42.8751 51.2975 42.9969 51.4003 43.0997C51.5031 43.2025 51.6249 43.25 51.75 43.25H65.25C65.3751 43.25 65.4969 43.2025 65.5997 43.0997C65.7025 42.9969 65.75 42.8751 65.75 42.75V6.25H29.25ZM29.25 2.25H67.5C68.7375 2.25 69.75 3.2625 69.75 4.5V42.75C69.75 45.225 67.725 47.25 65.25 47.25H51.75C49.275 47.25 47.25 45.225 47.25 42.75V29.25C47.25 26.775 45.225 24.75 42.75 24.75H29.25C26.775 24.75 24.75 22.725 24.75 20.25V6.75C24.75 4.275 26.775 2.25 29.25 2.25Z" class="path-fill"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M42.75 65.75C42.8751 65.75 42.9969 65.7025 43.0997 65.5997C43.2025 65.4969 43.25 65.3751 43.25 65.25V51.75C43.25 51.6249 43.2025 51.5031 43.0997 51.4003C42.9969 51.2975 42.8751 51.25 42.75 51.25H29.25C24.5659 51.25 20.75 47.4341 20.75 42.75V29.25C20.75 29.1249 20.7025 29.0031 20.5997 28.9003C20.4969 28.7975 20.3751 28.75 20.25 28.75H6.75C6.62494 28.75 6.50306 28.7975 6.4003 28.9003C6.29755 29.0031 6.25 29.1249 6.25 29.25V65.75H42.75ZM42.75 69.75H4.5C3.2625 69.75 2.25 68.7375 2.25 67.5V29.25C2.25 26.775 4.275 24.75 6.75 24.75H20.25C22.725 24.75 24.75 26.775 24.75 29.25V42.75C24.75 45.225 26.775 47.25 29.25 47.25H42.75C45.225 47.25 47.25 49.275 47.25 51.75V65.25C47.25 67.725 45.225 69.75 42.75 69.75Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Email ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/voice/pricing/us" target="_self" data-uuid="c4056d19-2a2f-3b73-a207-d78e69f85132"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Programmable Voice logo</title> <g class="twilio_programmable-voice"> <path d="M54.384 67.979a5.27 5.27 0 0 1-2.669-.734 138.575 138.575 0 0 1-15.78-10.953c-4.056-3.337-7.271-6.211-10.087-9.023-2.816-2.811-5.926-6.252-9.456-10.491-2.857-3.525-7.354-9.694-10.695-15.506a5.265 5.265 0 0 1 .84-6.337l8.447-8.456c1.997-1.972 5.443-1.972 7.439 0l10.212 10.198a5.217 5.217 0 0 1 1.534 3.714 5.217 5.217 0 0 1-1.534 3.714l-2.794 2.79c2.857 3.588 5.337 6.379 7.774 8.813 2.816 2.812 5.569 5.288 8.405 7.554l2.795-2.791c2.038-2.035 5.38-2.056 7.439 0l10.212 10.218A5.217 5.217 0 0 1 68 54.403a5.217 5.217 0 0 1-1.534 3.714l-8.342 8.33A5.27 5.27 0 0 1 54.384 68v-.021ZM18.683 9.165a.986.986 0 0 0-.736.315L9.5 17.894c-.336.336-.4.86-.168 1.28 3.215 5.602 7.564 11.54 10.296 14.94 3.425 4.112 6.43 7.448 9.183 10.176 2.732 2.727 5.82 5.497 9.77 8.729a134.385 134.385 0 0 0 15.277 10.617c.4.23.946.167 1.282-.168l8.342-8.33c.273-.273.315-.588.315-.735a1.02 1.02 0 0 0-.315-.734L53.27 43.45a1.08 1.08 0 0 0-1.492 0l-4.14 4.133a2.095 2.095 0 0 1-2.794.147l-1.471-1.175a102.691 102.691 0 0 1-8.741-7.869c-2.543-2.538-5.128-5.455-8.09-9.148l-1.177-1.469a2.087 2.087 0 0 1 .147-2.79l4.118-4.134a1.05 1.05 0 0 0 .316-.734 1.02 1.02 0 0 0-.316-.735L19.44 9.46a1.056 1.056 0 0 0-.736-.315h-.021v.021Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Voice</strong> </span> </div> </a> <div class="navigation-dropdown-shortcut-links "> <a href="/en-us/voice/conference/pricing" target="_self" data-uuid="bdf5bad8-839c-3cc2-befc-caefedbefa87">Conferencing</a> <a href="/en-us/sip-trunking/pricing/us" target="_self" data-uuid="a36943fb-5aa4-39dc-961b-51e70e40efb0">SIP trunking</a> </div> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span></span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/verify/pricing" target="_self" data-uuid="5c910363-d68b-3e0a-875a-7b333197fadb"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Verify logo</title> <g class="twilio_verify"> <g class="path-fill"> <path d="M36 68.558a5.287 5.287 0 0 1-3.761-1.552L3.87 38.616A6.317 6.317 0 0 1 2 34.111V9.313A5.314 5.314 0 0 1 7.313 4h57.374A5.314 5.314 0 0 1 70 9.313v1.423a6.28 6.28 0 0 1-1.87 4.505L39.761 43.61c-2.061 2.061-5.44 2.061-7.522 0L21.74 33.112a2.116 2.116 0 0 1 0-2.996 2.116 2.116 0 0 1 2.997 0l10.497 10.498c.276.276.595.319.744.319.148 0 .489-.043.743-.32l28.412-28.368c.403-.404.616-.935.616-1.509V9.312c0-.595-.468-1.062-1.063-1.062H7.313c-.595 0-1.063.467-1.063 1.063V34.11c0 .574.213 1.105.616 1.509l28.369 28.369a1.091 1.091 0 0 0 1.509 0l16.872-16.873a2.116 2.116 0 0 1 2.996 0 2.116 2.116 0 0 1 0 2.996L39.74 66.986a5.288 5.288 0 0 1-3.761 1.551l.021.022Z"/> <path d="M63.625 46.118a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Verify</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/lookup/pricing" target="_self" data-uuid="764f3144-e164-3216-a6ac-db00e0e38fc0"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Lookup logo</title> <g class="twilio_lookup"> <g class="path-fill"> <path d="M27.498 33.873a6.375 6.375 0 1 0 0-12.75 6.375 6.375 0 0 0 0 12.75Z"/> <path d="M69.379 66.361 46.96 43.944c3.761-4.44 6.056-10.178 6.056-16.446C52.996 13.432 41.564 2 27.498 2S2 13.432 2 27.498s11.432 25.498 25.498 25.498a25.267 25.267 0 0 0 16.446-6.056l22.417 22.417c.425.425.956.616 1.509.616.552 0 1.084-.212 1.508-.616a2.116 2.116 0 0 0 0-2.996ZM6.248 27.498C6.25 15.79 15.79 6.25 27.499 6.25c11.708 0 21.248 9.54 21.248 21.248 0 11.708-9.54 21.248-21.248 21.248-11.708 0-21.248-9.54-21.248-21.248Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Lookup</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/serverless/pricing" target="_self" data-uuid="2aba174c-e04e-35fb-9be8-8df21e8f3bcc"> <svg width="72" height="74" viewBox="0 0 72 74" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M2 15.3C2.00089 13.5952 2.46899 11.9235 3.35315 10.4675C4.23731 9.01146 5.5035 7.8272 7.01337 7.04411C8.52323 6.26102 10.2187 5.90922 11.9144 6.02716C13.6101 6.1451 15.2409 6.72825 16.6286 7.71287C18.0162 8.69749 19.1073 10.0457 19.7826 11.6102C20.4579 13.1746 20.6914 14.8952 20.4577 16.5838C20.2239 18.2724 19.5319 19.864 18.4572 21.1848C17.3825 22.5056 15.9664 23.5047 14.3638 24.073V52.5C14.3638 54.9665 15.3408 57.332 17.0798 59.0761C18.8188 60.8202 21.1774 61.8 23.6367 61.8C26.0961 61.8 28.4546 60.8202 30.1936 59.0761C31.9326 57.332 32.9096 54.9665 32.9096 52.5V45.773C31.0998 45.1325 29.5325 43.9448 28.424 42.3735C27.3154 40.8023 26.7201 38.9248 26.7201 37C26.7201 35.0752 27.3154 33.1977 28.424 31.6265C29.5325 30.0552 31.0998 28.8675 32.9096 28.227V21.5C32.9096 19.4645 33.3094 17.449 34.086 15.5684C34.8627 13.6879 36.0011 11.9792 37.4362 10.5398C38.8713 9.10054 40.5751 7.95882 42.4501 7.17987C44.3252 6.40092 46.3349 6 48.3644 6C50.394 6 52.4037 6.40092 54.2787 7.17987C56.1538 7.95882 57.8575 9.10054 59.2926 10.5398C60.7277 11.9792 61.8661 13.6879 62.6428 15.5684C63.4195 17.449 63.8192 19.4645 63.8192 21.5V49.927C65.8814 50.6591 67.6192 52.0985 68.7257 53.991C69.8322 55.8835 70.2363 58.1073 69.8665 60.2697C69.4967 62.432 68.3768 64.3936 66.7046 65.8082C65.0325 67.2227 62.9158 67.999 60.7283 68C58.5384 68.0033 56.418 67.2291 54.7427 65.8147C53.0674 64.4003 51.9453 62.4369 51.575 60.2722C51.2048 58.1076 51.6104 55.8813 52.72 53.9879C53.8296 52.0944 55.5715 50.6558 57.6373 49.927V21.5C57.6373 19.0335 56.6603 16.668 54.9213 14.9239C53.1823 13.1798 50.8237 12.2 48.3644 12.2C45.9051 12.2 43.5465 13.1798 41.8075 14.9239C40.0685 16.668 39.0915 19.0335 39.0915 21.5V28.227C40.9014 28.8675 42.4686 30.0552 43.5772 31.6265C44.6857 33.1977 45.281 35.0752 45.281 37C45.281 38.9248 44.6857 40.8023 43.5772 42.3735C42.4686 43.9448 40.9014 45.1325 39.0915 45.773V52.5C39.0915 56.6108 37.4633 60.5533 34.5649 63.4601C31.6666 66.367 27.7356 68 23.6367 68C19.5379 68 15.6069 66.367 12.7085 63.4601C9.81019 60.5533 8.18192 56.6108 8.18192 52.5V24.073C6.37348 23.4313 4.80789 22.243 3.70077 20.6718C2.59365 19.1007 1.99945 17.2239 2 15.3ZM11.2729 12.2C10.4531 12.2 9.66691 12.5266 9.08724 13.108C8.50758 13.6893 8.18192 14.4778 8.18192 15.3C8.18192 16.1222 8.50758 16.9107 9.08724 17.492C9.66691 18.0734 10.4531 18.4 11.2729 18.4C12.0927 18.4 12.8789 18.0734 13.4585 17.492C14.0382 16.9107 14.3638 16.1222 14.3638 15.3C14.3638 14.4778 14.0382 13.6893 13.4585 13.108C12.8789 12.5266 12.0927 12.2 11.2729 12.2ZM57.6373 58.7C57.6373 57.8778 57.963 57.0893 58.5426 56.508C59.1223 55.9266 59.9085 55.6 60.7283 55.6C61.548 55.6 62.3342 55.9266 62.9139 56.508C63.4936 57.0893 63.8192 57.8778 63.8192 58.7C63.8192 59.5222 63.4936 60.3107 62.9139 60.892C62.3342 61.4734 61.548 61.8 60.7283 61.8C59.9085 61.8 59.1223 61.4734 58.5426 60.892C57.963 60.3107 57.6373 59.5222 57.6373 58.7Z"/> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Serverless</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/video/pricing" target="_self" data-uuid="7bd70d75-cf69-30ce-9ae5-ea9730e53641"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Video logo</title> <g class="twilio_video"> <path d="M43.438 57.5H7.312A5.314 5.314 0 0 1 2 52.187V20.314A5.314 5.314 0 0 1 7.313 15h36.124a5.314 5.314 0 0 1 5.313 5.313v8.245l13.557-6.78a5.264 5.264 0 0 1 5.164.235A5.295 5.295 0 0 1 70 26.538v19.465a5.266 5.266 0 0 1-2.507 4.505 5.321 5.321 0 0 1-5.164.255L48.75 44.049v8.16a5.314 5.314 0 0 1-5.313 5.312V57.5ZM7.312 19.25c-.595 0-1.062.468-1.062 1.063v31.875c0 .594.468 1.062 1.063 1.062h36.124c.596 0 1.063-.468 1.063-1.063v-11.58c0-.745.383-1.425.999-1.807a2.153 2.153 0 0 1 2.061-.106l16.639 8.245c.489.233.871.042 1.041-.043.149-.085.51-.361.51-.892V26.539c0-.532-.361-.808-.51-.914-.149-.085-.552-.297-1.041-.043l-16.639 8.31c-.659.318-1.445.297-2.061-.086A2.123 2.123 0 0 1 44.5 32V20.312c0-.595-.468-1.062-1.063-1.062H7.313Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Video</strong> </span> </div> </a> </li> </ul> </div> <div class="navigation-dropdown-section "> <h5 class="navigation-dropdown-title"> <span>Applications</span> </h5> <hr/> <ul class="navigation-dropdown-list"> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="/en-us/flex/pricing" target="_self" data-uuid="454d3fdf-99a1-35d7-ac19-b3c0e80a9372"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Flex logo</title> <g class="twilio_flex"> <path d="M10.455 32.482C9.235 31.259 7 32.074 7 33.909v18.55c0 .612.203 1.02.61 1.428l17.476 17.531c1.22 1.223 3.455.408 3.455-1.427v-18.55c0-.612-.203-1.02-.61-1.427L10.456 32.482ZM9.032 7C8.016 7 7 8.02 7 9.039v13.454c0 .612.203 1.02.61 1.427l29.873 29.967c.406.407.813.611 1.422.611h20.729c1.828 0 2.641-2.242 1.422-3.465L43.58 33.297c-.406-.407-.813-.611-1.422-.611h-11.38c-1.017 0-2.033-.816-2.033-2.039 0-1.019.813-2.038 2.033-2.038h39.22c1.83 0 2.642-2.243 1.423-3.466L53.943 7.612C53.537 7.204 52.927 7 52.521 7H9.032Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Flex</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://segment.com/pricing/" target="_blank" data-uuid="6f4a34e1-7640-361d-a7ce-70ee86701cb6"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Engage logo</title> <g class="twilio_engage"> <g class="path-fill"> <path d="M36 51.96c8.815 0 15.96-7.145 15.96-15.96 0-8.814-7.145-15.96-15.96-15.96-8.814 0-15.96 7.146-15.96 15.96 0 8.815 7.146 15.96 15.96 15.96Z"/> <path d="M32.54 59.76c-10.42-1.48-18.82-9.88-20.3-20.3-.88-6.28.7-12.16 3.88-16.88.52-.78.38-1.82-.28-2.48l-2.88-2.88c-.88-.88-2.34-.76-3.06.26C6.18 22.7 4 29.1 4 36v29.42C4 66.84 5.16 68 6.58 68H36c6.9 0 13.3-2.18 18.52-5.9 1.02-.72 1.14-2.18.26-3.06l-2.88-2.88c-.66-.66-1.7-.8-2.48-.28-4.7 3.2-10.6 4.78-16.88 3.88Zm6.92-47.52c10.42 1.46 18.82 9.88 20.3 20.3.88 6.28-.7 12.16-3.88 16.88-.52.78-.38 1.82.28 2.48l2.88 2.88c.88.88 2.34.76 3.06-.26C65.82 49.3 68 42.9 68 36V6.58C68 5.16 66.84 4 65.42 4H36c-6.9 0-13.3 2.18-18.52 5.9a2.006 2.006 0 0 0-.26 3.06l2.88 2.88c.66.66 1.7.8 2.48.28 4.7-3.18 10.58-4.76 16.88-3.88Z"/> </g> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Twilio Segment ↗</strong> </span> </div> </a> </li> <li class="has-icon"> <a class="navigation-dropdown-link-main" href="https://sendgrid.com/en-us/pricing" target="_self" data-uuid="b30a861c-7875-3e06-81b4-e6e9991f918f"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Marketing Campaigns logo</title> <g class="twilio_marketing-campaigns"> <path d="M22.71 41.007a2.26 2.26 0 0 1-1.87.501L.993 37.976c-1.28-.444-1.34-2.22-.08-2.72L62.169 7.018S62.247 7 62.286 7h.059a.78.78 0 0 1 .295.039s.04 0 .06.038a.573.573 0 0 1 .196.174c0 .02.02.058.04.077.04.097.078.212.059.328l-5.69 51.956c-.217.945-1.3 1.39-2.127.907L32.89 47.569c-.965-.56-2.166.115-2.166 1.215 0 .54.315 1.023.787 1.255l3.367 1.968c.768.386.985 1.39.492 2.085l-6.458 9.283c-.787 1.158-2.618.598-2.618-.791V44.905c0-.502.196-1.004.55-1.37l28.59-29.413c.315-.31-.138-.792-.492-.502L22.71 41.007Z" class="path-fill"/> </g> </svg> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>Marketing Campaigns</strong> </span> </div> </a> </li> </ul> <div class="button-container small "> <a href="/en-us/pricing" target="_blank" class="button button-secondary">See all pricing</a> </div> </div> </div> </div> </li> </ul> <ul class="navigation-buttons" role="list"> <li class="button-container"> <a href="https://www.twilio.com/try-twilio" class="button button-primary">Start for free</a> </li> <li class="button-container"> <a href="https://www.twilio.com/login" class="button button-secondary mb-login-link">Login</a> </li> <li class="button-container hide-up"> <a href="https://www.twilio.com/console" class="button button-secondary mb-console-link">Console</a> </li> <li class="button-container"> <a href="/en-us/help/sales" class="button button-secondary">Contact sales</a> </li> </ul> </div> </div> </nav> <div class="twilio-htmlcontainer"> <style> /* to reverse codebase style */ #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { & .path-fill, .navigation-dropdown svg { background: red; fill: rgb(var(--color-blue-60)) !important; } } /* new style */ .navigation-dropdown-list {padding: 0.8rem 0 2.6rem 0;} #navigation-dropdown-0 .navigation-dropdown-section:nth-child(4) { & .path-fill, .navigation-dropdown svg { background: red; fill: rgb(var(--color-mint)) !important; } /* right align and bottom section */ .button-container { margin-top: 0rem; display: flex; justify-content: right; } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { padding-bottom: 0; } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(2) { padding-top: 0; & h5 { display: none; } & hr { display: none; } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(3) { padding-top: var(--spacing-size-5); & h5 { display: flex; } & hr { display: flex; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(1) { padding-bottom: 0; } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(2) { padding-top: 0; & h5 { display: none; } & hr { display: none; } } @media screen and (min-width: 992px) { #navigation-dropdown-0 .navigation-dropdown-section:nth-child(1) { padding: 3rem 0rem 3rem var(--spacing-size-5); & ul li { padding-right: var(--spacing-size-5); } } #navigation-dropdown-0 .navigation-dropdown-section:nth-child(2) { padding: 3rem var(--spacing-size-5) 3rem 0rem; & h5 { display: flex; padding-top: 1.8rem; } & hr { display: block; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(1) { padding: 3rem 0rem 3rem var(--spacing-size-5); & ul li { padding-right: var(--spacing-size-5); } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(2) { padding: 3rem var(--spacing-size-5) 3rem 0rem; & h5 { display: flex; padding-top: 1.8rem; } & hr { display: block; } } #navigation-dropdown-1 .navigation-dropdown-section:nth-child(3) { display: flex; flex-direction: column; & .navigation-dropdown-list { gap: 1rem; } /* right align and bottom section */ .button-container { margin-top: 1.5rem; flex-grow: 1; display: flex; justify-content: right; align-self: flex-end; } } #navigation-dropdown-4 .navigation-dropdown-section:nth-child(3) { /* right align and bottom section */ .button-container { margin-top: 5rem; display: flex; justify-content: right; } } /* reversing code base */ #navigation-dropdown-0 .navigation-dropdown-section:nth-child(3) { padding: 1.2rem var(--spacing-size-4); } } </style> <div> </div> <script> // labels const currentPagePathNav = window.location.pathname; let domain = "https://www.twilio.com/" let locale = domain + "en-us"; let businessSizeLabels = [ "Business Size", "Enterprise", "Startup", "Nonprofit", ]; let twilioServicesLabels = [ "Twilio Services", "Professional Services", "Get technical and strategic advice from Twilio experts", "Training", "Learn how to architect, build, and support your apps", ]; if ( currentPagePathNav.includes("/de-de") || currentPagePathNav.includes("/de") ) { locale = domain + "de-de"; businessSizeLabels = [ "Unternehmensgröße", "Unternehmen", "Start-up", "Gemeinnützige Organisation", ]; twilioServicesLabels = [ "Twilio-Services", "Professionelle Dienstleistungen", "Erhalten Sie technische und strategische Beratung durch Expert:innen von Twilio.", "Schulungen", "Lernen Sie, wie Sie Apps anlegen, erstellen und unterstützen können.", ]; } else if ( currentPagePathNav.includes("/fr-fr") || currentPagePathNav.includes("/fr") ) { locale = domain + "fr-fr"; businessSizeLabels = [ "Taille de l'entreprise", "Entreprise", "Startup", "Associations caritatives", ]; twilioServicesLabels = [ "Services Twilio", "Services professionnels", "Obtenez des conseils techniques et stratégiques de la part d'experts Twilio", "Formations", "Découvrez comment concevoir, construire et prendre en charge vos applications", ]; } else if ( currentPagePathNav.includes("/pt-br") || currentPagePathNav.includes("/pt") ) { locale = domain + "pt-br"; businessSizeLabels = [ "Tamanho da empresa", "Empresarial", "Startup", "Sem fins lucrativos", ]; twilioServicesLabels = [ "Serviços da Twilio", "Serviços profissionais", "Obtenha consultoria técnica e estratégica dos especialistas da Twilio", "Treinamento", "Saiba como arquitetar, criar e dar suporte aos seus aplicativos", ]; } else if ( currentPagePathNav.includes("/es-mx") || currentPagePathNav.includes("/es") ) { locale = domain + "es-mx"; businessSizeLabels = [ "Tamaño de la empresa", "Empresa", "Startup", "Sin fines de lucro", ]; twilioServicesLabels = [ "Servicios de Twilio", "Servicios profesionales", "Obtén asesoría técnica y estratégica de los expertos de Twilio", "Capacitación", "Aprende a diseñar, crear y dar soporte a tus aplicaciones", ]; } else if ( currentPagePathNav.includes("/ja-jp") || currentPagePathNav.includes("/ja") ) { locale = domain + "ja-jp"; businessSizeLabels = [ "事業規模", "エンタープライズ", "スタートアップ", "非営利団体", ]; twilioServicesLabels = [ "Twilioの各種サービス", "プロフェッショナルサービス", "Twilioエキスパートから技術的・戦略的アドバイスを得られます", "トレーニング", "アプリケーションの設計、構築、サポートの方法を学べます", ]; } // desktop nav const paddingTop = "0.6rem"; let solutionsDropdown = document .getElementById("navigation-dropdown-1") .getElementsByClassName("navigation-dropdown-section"); const businessSize = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTop}"> <span>${businessSizeLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/enterprise" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[1]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/startups-resources" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[2]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://twilio.org" target="_blank" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[3]} ↗</strong> </span> </div> </a> </li> </ul>`; const twilioServicesHTML = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTop}"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product" > <title>Twilio Programmable Messaging logo</title> <g class="twilio_programmable-messaging"> <g class="path-fill"> <path d="M18.511 65.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 47.187V15.314A5.314 5.314 0 0 1 7.313 10h57.374A5.314 5.314 0 0 1 70 15.313v31.874a5.314 5.314 0 0 1-5.313 5.313H34.683L20.955 64.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 14.25c-.595 0-1.063.467-1.063 1.063v31.874c0 .596.468 1.063 1.063 1.063h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 48.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V15.313c0-.596-.468-1.063-1.063-1.063H7.313Z" ></path> <path d="M19 35.5a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Z" ></path> </g> </g> </svg> <span>${twilioServicesLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/professional-services" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[1]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[2]} </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/ahoy" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[3]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[4]} </p> </div> </a> </li> </ul>`; if (solutionsDropdown) { let industriesColumn = solutionsDropdown[2]; let industriesCTA = industriesColumn.getElementsByClassName( "navigation-dropdown-list" )[0]; industriesCTA.insertAdjacentHTML("afterend", businessSize); let partnersColumn = solutionsDropdown[3]; let partnersLastDiv = partnersColumn.getElementsByClassName( "navigation-dropdown-list" )[0]; partnersLastDiv.insertAdjacentHTML("afterend", twilioServicesHTML); } // mobile nav const paddingTopMobile = "5.5rem"; let solutionsDropdownMobile = document .getElementsByClassName("navigation-mobile-menu")[0] .getElementsByClassName("navigation-dropdown four-columns")[1] .getElementsByClassName("navigation-dropdown-section"); const businessSizeMobile = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTopMobile}"> <span>${businessSizeLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/enterprise" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[1]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/solutions/startups-resources" target="_self" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[2]}</strong> </span> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="https://twilio.org" target="_blank" > <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${businessSizeLabels[3]} ↗</strong> </span> </div> </a> </li> </ul>`; const twilioServicesHTMLMobile = `<h5 class="navigation-dropdown-title" style="padding-top: ${paddingTopMobile}"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product" > <title>Twilio Programmable Messaging logo</title> <g class="twilio_programmable-messaging"> <g class="path-fill"> <path d="M18.511 65.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 47.187V15.314A5.314 5.314 0 0 1 7.313 10h57.374A5.314 5.314 0 0 1 70 15.313v31.874a5.314 5.314 0 0 1-5.313 5.313H34.683L20.955 64.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 14.25c-.595 0-1.063.467-1.063 1.063v31.874c0 .596.468 1.063 1.063 1.063h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 48.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V15.313c0-.596-.468-1.063-1.063-1.063H7.313Z" ></path> <path d="M19 35.5a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Z" ></path> </g> </g> </svg> <span>${twilioServicesLabels[0]}</span> </h5> <hr /> <ul class="navigation-dropdown-list"> <li> <a class="navigation-dropdown-link-main" href="${locale}/professional-services" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[1]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[2]} </p> </div> </a> </li> <li> <a class="navigation-dropdown-link-main" href="${locale}/ahoy" target="_self"> <div class="navigation-dropdown-link-info"> <span class="navigation-dropdown-link-text"> <strong>${twilioServicesLabels[3]}</strong> </span> <p class="navigation-dropdown-link-description"> ${twilioServicesLabels[4]} </p> </div> </a> </li> </ul>`; if (solutionsDropdownMobile) { let industriesColumnMobile = solutionsDropdownMobile[2]; let industriesCTAMobile = industriesColumnMobile.getElementsByClassName( "navigation-dropdown-list" )[0]; industriesCTAMobile.insertAdjacentHTML("afterend", businessSizeMobile); let partnersColumnMobile = solutionsDropdownMobile[3]; let partnersLastDivMobile = partnersColumnMobile.getElementsByClassName( "navigation-dropdown-list" )[0]; partnersLastDivMobile.insertAdjacentHTML( "afterend", twilioServicesHTMLMobile ); } </script> </div> </div> </header> <main class="column-container global-main twiliomain-search"> <div id="consent_blackbar"></div> <div class="xfpage page basicpage"> <section data-uuid="" class="sub-navigation" id="htmlidsubnav"> <nav> <button aria-label="Opens subnav on mobile" class="sub-navigation-page">Messaging</button> <div class="sub-navigation-links" aria-hidden="true"> <ul class="sub-navigation-list" role="list"> <li> <a href="/en-us/messaging" class="sub-navigation-link" target="_self">Overview</a> </li> <li aria-selected="true"> <button type="button" class="sub-navigation-button" aria-expanded="false">API</button> <div class="sub-navigation-dropdown" aria-hidden="true"> <ul role="menu"> <li> <a href="/en-us/messaging/programmable-messaging-api" role="menuitem" target="_self">Programmable Messaging API</a> </li> <li> <a href="/en-us/messaging/conversations-api" role="menuitem" target="_self">Conversations API</a> </li> <li> <a href="/en-us/user-authentication-identity/verify" role="menuitem" target="_self">Verify API</a> </li> </ul> </div> </li> <li> <button type="button" class="sub-navigation-button" aria-expanded="false">Channels</button> <div class="sub-navigation-dropdown" aria-hidden="true"> <ul role="menu"> <li> <a href="/en-us/messaging/channels/sms" role="menuitem" target="_self">SMS</a> </li> <li> <a href="/en-us/messaging/channels/whatsapp" role="menuitem" target="_self">WhatsApp</a> </li> <li> <a href="/en-us/messaging/channels/facebook-messenger" role="menuitem" target="_self">Facebook Messenger for Business</a> </li> <li> <a href="/en-us/messaging/channels/mms" role="menuitem" target="_self">MMS</a> </li> <li> <a href="/en-us/messaging/channels/chat" role="menuitem" target="_self">Chat</a> </li> <li> <a href="/en-us/messaging/channels/rcs" role="menuitem" target="_self">RCS Business Messaging</a> </li> </ul> </div> </li> <li> <button type="button" class="sub-navigation-button" aria-expanded="false">Pricing</button> <div class="sub-navigation-dropdown" aria-hidden="true"> <ul role="menu"> <li> <a href="/en-us/pricing/messaging" role="menuitem" target="_self">How it works</a> </li> <li> <a href="/en-us/sms/pricing/us" role="menuitem" target="_self">SMS</a> </li> <li> <a href="/en-us/whatsapp/pricing" role="menuitem" target="_self">WhatsApp</a> </li> <li> <a href="/en-us/messaging/pricing/conversations-api" role="menuitem" target="_self">Conversations API</a> </li> </ul> </div> </li> </ul> </div> </nav> </section> </div> <section class="header bg-color-ink-100 light-text header-buttonsGroup "> <div/></div> <div class="grid-container two-columns center default"> <div class="grid-container-column "> <div class="header-title"> <div class="eyebrow light-text"> Conversations API </div> <h1 class="title-extra-large">Seamless conversational messaging across channels</h1> <div class="header-badge"> </div> <div class="header-sub-text"> <p class="copy-large">Drive engagement with scalable, multiparty conversations and grow revenue. Consumers spend 20% more on average with businesses that offer conversational messaging*.</p> </div> </div> <div data-uuid="739239170" class="button-container horizontal medium left"> <a class="button button-primary right" href="https://www.twilio.com/try-twilio" target="_self" data-uuid="013bce1e-b350-3464-9387-0069673a60ae" aria-label="Start for free"> <span class="button-text"> Start for free </span> </a> </div> </div> <div class="grid-container-column media-right"> <button type="button" class="media video" data-video-source="https://youtu.be/WMbsxYfqTWg"> <div class="media-image overlay"> <span class="play-icon"></span> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_hero-conversations-api-vid.png/_jcr_content/renditions/compressed-original.webp" alt="Conversational messaging between customer extended across preferred channels" title="Conversational messaging between customer extended across preferred channels" loading="lazy"/> </div> <div class="media-image--mobile overlay"> <span class="play-icon"></span> <img loading="lazy"/> </div> </button> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"VideoObject","name":"Twilio Messaging - Conversations API","description":"Natively support conversations on SMS, MMS, WhatsApp, and chat. Integrate a unified API to manage participants and message archives, add integrations, and analyze interactions with webhooks.\n\nLearn more here:\nhttps://www.twilio.com/conversations-api","thumbnailUrl":["https://i.ytimg.com/vi/WMbsxYfqTWg/default.jpg","https://i.ytimg.com/vi/WMbsxYfqTWg/mqdefault.jpg","https://i.ytimg.com/vi/WMbsxYfqTWg/hqdefault.jpg","https://i.ytimg.com/vi/WMbsxYfqTWg/sddefault.jpg","https://i.ytimg.com/vi/WMbsxYfqTWg/maxresdefault.jpg"],"uploadDate":"2022-10-27T01:05:14Z","duration":"PT1M55S","contentUrl":"https://www.youtube.com/watch?v=WMbsxYfqTWg","embedUrl":"https://www.youtube.com/embed/WMbsxYfqTWg","interactionStatistic":{"type":"InteractionCounter","interactionType":{"@type":"WatchAction"},"userInteractionCount":16264}} </script> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container slim medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Integrate once and scale conversations on a flexible messaging platform </h2> </div> </div> </div> <div id="" class="grid-container slim medium-gap center" style=""> <div class="grid-container-column"> <div id="" class="grid-container two-columns default medium-gap" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_diagram_conversations-api.png/_jcr_content/renditions/compressed-original.webp" alt="Diagram of conversations api" title="Diagram of conversations api" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_diagram_conversations-api.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> <div class="grid-container-column"> <div data-uuid="-2092337437" class="title "> <h4 class="title-extra-small"> Conversational messaging across preferred channels </h4> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p>Create 1-to-1 or multiparty conversations for customer care and conversational commerce. Get to market quickly with web and mobile SDKs, and create custom conversational experiences with just a single API.</p> <p> </p> </div> </div> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="152546991" class="divider"> <p>Use Cases</p> <hr/> </div> </div> </div> <div id="" class="grid-container tiny medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> High quality conversational messaging with global reach </h2> </div> </div> </div> <div id="" class="grid-container two-columns tiny medium-gap equal-heights" style=""> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <div class="card-icon__overlay" target="_self"></div> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="illo_use-cases_conversational-commerce_conversations-api circle medium circle"> <svg width="190" height="80" viewBox="0 0 190 80" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M35.5699 23.35C31.9099 28.43 29.7299 34.63 29.5899 40.84C29.4999 45.13 30.1799 49.46 31.6399 53.49C33.9799 59.94 38.6399 65.3 44.8499 68.27C50.5099 70.97 57.0299 71.59 63.2299 70.63C72.9799 69.12 82.3799 63.28 86.4999 54.31C91.8699 42.62 88.1199 27.48 78.8199 19.29C70.6199 12.07 57.3899 9.97001 47.0199 14.16C42.4099 16.02 38.4499 19.33 35.5599 23.35H35.5699Z" fill="#EDF6FF"/> <path d="M129.32 29.72C127.19 32.68 125.92 36.29 125.84 39.9C125.79 42.4 126.18 44.92 127.04 47.27C128.4 51.02 131.11 54.15 134.73 55.88C138.02 57.45 141.82 57.82 145.43 57.26C151.11 56.38 156.58 52.98 158.98 47.76C162.11 40.95 159.92 32.14 154.51 27.37C149.74 23.17 142.03 21.94 136 24.38C133.32 25.46 131.01 27.39 129.33 29.73L129.32 29.72Z" fill="#FBEDE3"/> <path d="M116.231 2.98002C116.001 2.98002 115.781 2.98002 115.551 2.98002C115.101 2.98002 114.651 2.98002 114.211 2.97002C113.331 2.97002 112.461 2.95002 111.621 2.95002C109.931 2.93002 108.321 2.92002 106.781 2.91002C103.701 2.89002 100.911 2.86002 98.3906 2.84002C93.3506 2.81002 89.3706 2.80002 86.2806 2.81002C80.0806 2.83002 77.3906 2.88002 76.6406 2.89002C74.7306 2.93002 73.3106 2.98002 72.3706 3.04002C71.4306 3.10002 70.9706 3.16002 70.9606 3.21002V3.23002C70.7906 2.94002 70.5506 6.65002 70.3706 15.86C70.3306 17.87 70.1806 25.97 69.9506 37.5C69.7506 43.27 69.9906 49.91 69.8706 57.04C69.8706 57.26 69.8606 57.49 69.8506 57.71C69.8506 57.94 69.8506 58.16 69.8506 58.39V58.73C69.8506 58.84 69.8506 58.99 69.8706 59.11C69.9106 59.37 69.9906 59.63 70.1206 59.86C70.3706 60.33 70.8106 60.71 71.3206 60.88C71.8206 61.03 72.2806 61.09 72.7606 61.12C73.2406 61.15 73.7006 61.15 74.1706 61.16C74.6406 61.16 75.1006 61.17 75.5706 61.18C76.5106 61.18 77.4606 61.18 78.4106 61.18C82.2106 61.16 86.1006 61.06 90.0406 61.02C92.0106 61 93.9906 60.99 95.9706 61.02C97.9606 61.06 99.9506 61.09 101.951 61.13C103.951 61.17 105.951 61.21 107.941 61.25L109.431 61.28L110.921 61.33C111.921 61.36 112.941 61.39 113.961 61.18C114.471 61.07 114.991 60.9 115.441 60.59C115.901 60.28 116.261 59.81 116.441 59.29C116.641 58.78 116.651 58.22 116.671 57.75C116.691 57.26 116.721 56.77 116.741 56.28C116.831 54.32 116.921 52.37 116.991 50.44C117.131 46.58 117.241 42.8 117.311 39.13C117.461 31.79 117.511 24.92 117.481 18.85C117.481 15.81 117.431 12.98 117.391 10.38C117.361 9.08002 117.341 7.84002 117.311 6.67002C117.291 6.08002 117.281 5.51002 117.261 4.96002C117.261 4.68002 117.251 4.41002 117.241 4.14002" fill="white"/> <path d="M117.14 9.52001C117.14 11.04 117.21 14.95 117.2 20.66C117.17 23.51 117.14 26.81 117.1 30.49C117.04 34.16 117.09 38.21 116.92 42.55C116.8 46.89 116.67 51.53 116.43 56.39C116.32 57.6 116.5 58.9 115.83 59.78C115.18 60.68 113.91 60.94 112.7 61C111.47 61.06 110.18 60.94 108.89 60.93C107.6 60.9 106.3 60.88 104.99 60.85C102.37 60.8 99.7202 60.75 97.0302 60.69C94.3502 60.66 91.6302 60.67 88.9002 60.69C86.1702 60.73 83.4302 60.76 80.6702 60.8C79.2902 60.82 77.9102 60.84 76.5402 60.83C75.1602 60.83 73.7702 60.83 72.4302 60.74C72.1002 60.71 71.7802 60.65 71.4802 60.56C71.2102 60.48 70.9602 60.33 70.7502 60.13C70.3202 59.71 70.1702 59.16 70.2002 58.5C70.2202 57.12 70.2302 55.74 70.2502 54.37C70.2502 51.62 70.2402 48.88 70.2302 46.15C70.1602 40.71 70.3802 35.36 70.4502 30.15C70.5502 24.94 70.6502 19.88 70.7502 15.06C70.8002 12.65 70.8602 10.29 70.9502 8.01001C70.9902 6.87001 71.0402 5.74001 71.1202 4.64001C71.1502 4.16001 71.2502 3.31001 71.2302 3.54001L71.5402 3.50001L71.9402 3.47001C72.2102 3.45001 72.4702 3.44001 72.7402 3.43001C81.2902 3.14001 88.6802 3.24001 94.2202 3.24001C99.7702 3.27001 103.5 3.30001 104.8 3.30001C118.39 3.42001 121.96 2.64001 103.57 2.48001C102.28 2.48001 98.5102 2.46001 92.8802 2.43001C90.0602 2.43001 86.7802 2.40001 83.1102 2.45001C81.2802 2.47001 79.3502 2.48001 77.3302 2.50001C76.3202 2.50001 75.2902 2.56001 74.2302 2.59001C73.7002 2.61001 73.1702 2.63001 72.6302 2.65001C72.3602 2.65001 72.0902 2.67001 71.8202 2.69001L71.4102 2.73001C71.2502 2.75001 71.1902 2.74001 70.8802 2.81001C70.7602 2.84001 70.6302 2.93001 70.6102 2.96001C70.5302 3.05001 70.4902 3.18001 70.4602 3.30001C70.4102 3.56001 70.4102 3.62001 70.3902 3.79001L70.3202 4.63001C70.2902 5.19001 70.2602 5.75001 70.2202 6.31001C70.1802 7.44001 70.1302 8.58001 70.0902 9.75001C70.0402 12.07 69.9802 14.47 69.9202 16.92C69.8302 21.81 69.7302 26.94 69.6402 32.21C69.5902 34.85 69.5302 37.52 69.4802 40.23C69.4402 42.94 69.4802 45.67 69.4902 48.42C69.5102 51.17 69.5202 53.93 69.4902 56.7C69.4702 57.39 69.4502 58.09 69.4702 58.79C69.4502 59.58 69.8402 60.4 70.5002 60.87C71.1902 61.37 71.9702 61.41 72.6702 61.48C73.3702 61.5 74.0802 61.53 74.7802 61.53C80.3502 61.59 85.9102 61.38 91.3702 61.37C96.8302 61.31 102.22 61.5 107.44 61.57C108.75 61.59 110.03 61.63 111.32 61.67C112.6 61.69 113.96 61.7 115.21 61.1C115.83 60.8 116.36 60.26 116.64 59.62C116.93 58.99 116.96 58.28 116.98 57.69C117.03 56.46 117.09 55.24 117.14 54.04C117.37 49.23 117.43 44.65 117.56 40.4C117.63 31.89 117.69 24.67 117.74 19.36C117.68 14.05 117.64 10.65 117.63 9.80001C117.41 2.18001 117 2.42001 117.11 9.53001L117.14 9.52001Z" fill="#121C2D"/> <path d="M82.3998 9.88001C81.9998 9.78001 76.6598 9.70001 76.3198 9.70001C75.8798 9.70001 75.7398 10.51 76.3398 10.51C76.6798 10.51 82.1798 10.44 82.3998 10.39C82.6498 10.34 82.6298 9.93001 82.3998 9.87001V9.88001Z" fill="#121C2D"/> <path d="M111.44 9.91003C109.95 9.96003 89.49 9.38003 88.18 9.50003C86.49 9.52003 86.07 10.33 88.34 10.31C89.6 10.2 110.56 10.62 111.41 10.42C112.35 10.36 112.32 9.95003 111.44 9.90003V9.91003Z" fill="#121C2D"/> <path d="M110.5 13.22C108.38 13.1 79.4901 12.66 77.6701 12.64C75.3001 12.61 74.6601 13.41 77.8801 13.45C79.6701 13.47 109.26 13.76 110.45 13.73C111.78 13.7 111.75 13.29 110.51 13.22H110.5Z" fill="#51A5DF"/> <path d="M100.46 17.0401C98.9397 16.9401 78.2697 16.8101 76.9597 16.8101C75.2597 16.8101 74.7997 17.6101 77.0997 17.6201C78.3897 17.6201 99.5797 17.6001 100.43 17.5601C101.38 17.5101 101.35 17.1001 100.46 17.0401Z" fill="#EE2F46"/> <path d="M110.93 17.0501C110.41 16.9501 103.42 16.8701 102.98 16.8701C102.41 16.8701 102.24 17.6801 103.02 17.6801C103.46 17.6801 110.64 17.6101 110.93 17.5601C111.25 17.5101 111.24 17.1001 110.93 17.0401V17.0501Z" fill="#121C2D"/> <path d="M109.97 21.4501C108.93 21.3701 101.29 21.1601 93.6896 21.1101C86.0896 21.0401 78.5296 20.9701 77.6296 20.9601C75.2896 20.9301 74.6696 21.7301 77.8296 21.7701C78.7096 21.7701 86.4396 21.8001 94.0896 21.8201C101.74 21.8201 109.31 21.9601 109.9 21.9601C111.21 21.9401 111.18 21.5301 109.96 21.4501H109.97Z" fill="#121C2D"/> <path d="M82.3998 24.98C81.9998 24.88 76.6598 24.8 76.3198 24.8C75.8798 24.8 75.7398 25.6101 76.3398 25.6101C76.6798 25.6101 82.1798 25.54 82.3998 25.49C82.6498 25.44 82.6298 25.03 82.3998 24.97V24.98Z" fill="#121C2D"/> <path d="M111.44 25.01C109.95 25.06 89.49 24.48 88.18 24.6C86.49 24.62 86.07 25.43 88.34 25.41C89.6 25.3 110.56 25.72 111.41 25.52C112.35 25.46 112.32 25.05 111.44 25V25.01Z" fill="#EE2F46"/> <path d="M110.5 28.31C108.38 28.19 79.4901 27.75 77.6701 27.73C75.3001 27.7 74.6601 28.5 77.8801 28.54C79.6701 28.56 109.26 28.85 110.45 28.82C111.78 28.79 111.75 28.38 110.51 28.31H110.5Z" fill="#121C2D"/> <path d="M100.46 32.14C98.9397 32.04 78.2697 31.91 76.9597 31.91C75.2597 31.91 74.7997 32.71 77.0997 32.72C78.3897 32.72 99.5797 32.7 100.43 32.66C101.38 32.61 101.35 32.2 100.46 32.14Z" fill="#121C2D"/> <path d="M110.93 32.14C110.41 32.04 103.42 31.96 102.98 31.96C102.41 31.96 102.24 32.77 103.02 32.77C103.46 32.77 110.64 32.7 110.93 32.65C111.25 32.6 111.24 32.19 110.93 32.13V32.14Z" fill="#EE2F46"/> <path d="M109.97 36.54C108.93 36.46 101.29 36.25 93.6896 36.2C86.0896 36.13 78.5296 36.06 77.6296 36.05C75.2896 36.02 74.6696 36.82 77.8296 36.86C78.7096 36.86 86.4396 36.89 94.0896 36.91C101.74 36.91 109.31 37.05 109.9 37.05C111.21 37.03 111.18 36.62 109.96 36.54H109.97Z" fill="#51A5DF"/> <path d="M90.8398 40.0201C89.9298 39.9301 77.5798 39.8701 76.7998 39.8701C75.7898 39.8701 75.4998 40.6801 76.8698 40.6801C77.6398 40.6801 90.3198 40.5801 90.8298 40.5401C91.3998 40.4901 91.3698 40.0801 90.8398 40.0201Z" fill="#EE2F46"/> <path d="M111.62 40.8C110.54 40.88 95.69 40.23 94.73 40.38C93.5 40.39 93.2 41.2 94.85 41.19C95.31 41.18 99.33 41.14 103.33 41.29C107.33 41.43 111.3 41.35 111.61 41.32C112.3 41.26 112.27 40.85 111.63 40.8H111.62Z" fill="#121C2D"/> <path d="M110.5 44.1C108.38 43.98 79.4901 43.54 77.6701 43.52C75.3001 43.49 74.6601 44.29 77.8801 44.33C79.6701 44.35 109.26 44.64 110.45 44.61C111.78 44.58 111.75 44.17 110.51 44.1H110.5Z" fill="#EE2F46"/> <path d="M100.46 47.93C98.9397 47.83 78.2697 47.7 76.9597 47.7C75.2597 47.7 74.7997 48.5 77.0997 48.51C78.3897 48.51 99.5797 48.49 100.43 48.45C101.38 48.4 101.35 47.99 100.46 47.93Z" fill="#51A5DF"/> <path d="M110.93 47.93C110.41 47.83 103.42 47.75 102.98 47.75C102.41 47.75 102.24 48.56 103.02 48.56C103.46 48.56 110.64 48.49 110.93 48.44C111.25 48.39 111.24 47.98 110.93 47.92V47.93Z" fill="#EE2F46"/> <path d="M109.97 52.33C108.93 52.25 101.29 52.04 93.6896 51.99C86.0896 51.92 78.5296 51.85 77.6296 51.84C75.2896 51.81 74.6696 52.61 77.8296 52.65C78.7096 52.65 86.4396 52.68 94.0896 52.7C101.74 52.7 109.31 52.84 109.9 52.84C111.21 52.82 111.18 52.41 109.96 52.33H109.97Z" fill="#121C2D"/> <path d="M111.531 29.63C105.511 31.38 102.811 37.81 103.351 43.73C103.531 45.69 104.231 47.6 105.361 49.2C107.961 52.88 112.471 54.34 116.781 53.96C118.041 53.85 119.281 53.58 120.471 53.15C126.731 50.85 129.041 43.96 127.441 37.74C127.161 36.67 126.771 35.62 126.271 34.64C125.051 32.27 123.161 30.41 120.661 29.53C118.161 28.65 115.371 28.49 112.821 29.16" fill="white"/> <path d="M114.841 29.06C115.401 29.03 116.881 28.89 118.971 29.35C120.011 29.59 121.201 29.95 122.341 30.68C123.481 31.4 124.581 32.47 125.431 33.83C126.291 35.19 126.941 36.83 127.281 38.61C127.651 40.38 127.691 42.31 127.321 44.22C126.981 46.13 126.141 48 124.901 49.58C123.611 51.12 121.891 52.32 119.941 52.94C116.061 54.21 111.581 53.74 108.381 51.61C106.781 50.55 105.561 49.08 104.791 47.48C104.011 45.88 103.691 44.19 103.681 42.6C103.621 39.4 104.511 36.71 105.541 34.96C106.561 33.17 107.651 32.3 108.001 31.98C109.921 30.39 111.501 29.91 111.531 29.64C111.551 29.52 111.221 29.53 110.441 29.73C109.691 29.98 108.461 30.45 107.121 31.69C106.751 32.03 105.631 33.07 104.591 35.02C103.581 36.97 102.721 39.87 102.941 43.28C103.011 44.98 103.501 46.81 104.451 48.49C105.411 50.16 106.851 51.68 108.671 52.68C112.291 54.71 117.041 54.96 121.051 53.29C122.071 52.9 122.991 52.29 123.851 51.63C124.681 50.93 125.421 50.13 126.031 49.24C127.231 47.46 127.921 45.41 128.151 43.4C128.601 39.35 127.461 35.48 125.491 32.81C124.501 31.48 123.281 30.47 122.051 29.83C120.811 29.19 119.621 28.9 118.611 28.71C116.581 28.36 115.241 28.53 114.921 28.55C113.441 28.71 112.791 29.07 112.821 29.17C112.851 29.29 113.541 29.17 114.861 29.07L114.841 29.06Z" fill="#121C2D"/> <path d="M147.37 77.37C147.67 77.32 148.44 77.19 149.39 76.62C150.31 76.05 151.49 75.03 151.93 73.31C152.03 72.88 152.03 72.39 151.89 71.93C151.76 71.47 151.54 71.05 151.28 70.66C150.76 69.89 150.19 69.14 149.56 68.37C148.32 66.85 146.92 65.3 145.48 63.78C142.59 60.73 139.5 57.78 136.85 55.47C135.52 54.31 134.3 53.32 133.25 52.56C132.72 52.18 132.25 51.86 131.8 51.62C131.34 51.39 131 51.17 130.48 51.2H130.55C129.33 51.1 129.14 50.93 129.03 50.91C128.47 50.69 128.19 50.34 128.03 50.05C127.87 49.76 127.86 49.53 127.76 49.46C127.69 49.4 127.46 49.54 127.46 50.07C127.47 50.33 127.56 50.66 127.81 50.98C128.05 51.31 128.49 51.6 128.99 51.75C129.07 51.75 129.21 51.89 130.5 52H130.57C130.63 52 130.88 52.05 131.23 52.22C131.57 52.4 132 52.65 132.48 52.98C133.45 53.64 134.64 54.59 135.97 55.72C138.63 57.98 141.82 60.99 144.82 64.1C146.32 65.65 147.77 67.24 149.05 68.78C150.24 70.32 151.76 71.84 151.29 73.32C150.86 74.79 149.77 75.74 148.95 76.22C148.1 76.71 147.47 76.8 147.32 76.85C146.59 77 146.22 77.07 146.21 77.19C146.2 77.29 146.59 77.46 147.36 77.36L147.37 77.37Z" fill="#121C2D"/> <path d="M144.921 75.37C144.391 74.75 140.671 71.13 136.581 67.16C134.551 65.17 132.431 63.08 130.641 61.18C129.751 60.23 128.931 59.33 128.261 58.52C127.591 57.72 127.051 56.94 126.831 56.44C126.591 54.64 126.351 53.8 126.101 53.51C125.711 52.98 125.151 52.79 124.771 52.82C124.381 52.85 124.221 53.05 124.231 53.14C124.241 53.25 124.401 53.27 124.631 53.37C124.841 53.45 125.261 53.67 125.511 54.1C125.541 54.21 125.731 54.39 126.041 56.67C126.451 57.71 127.751 59.22 129.521 61.12C131.291 63 133.501 65.17 135.681 67.27C140.041 71.44 144.171 75.38 144.531 75.72C145.401 76.53 145.671 76.22 144.931 75.39L144.921 75.37Z" fill="#121C2D"/> <path d="M129.66 47.76C129.95 47.15 130.52 45.46 130.61 42.96C130.66 41.71 130.66 40.26 130.45 38.66C130.24 37.06 129.8 35.3 128.92 33.58C127.21 30.15 123.59 26.96 118.96 26.11C114.36 25.27 109.21 26.83 105.63 30.2C103.84 31.87 102.44 33.97 101.65 36.26C100.85 38.54 100.58 40.97 100.85 43.26C101.07 45.56 101.82 47.73 102.85 49.6C103.92 51.46 105.28 53.04 106.83 54.17C108.36 55.33 110.06 56.02 111.63 56.37C113.2 56.72 114.65 56.78 115.87 56.73C118.33 56.63 119.94 56.11 120.49 55.94C121.93 55.46 123.01 54.76 123.64 54.15C124.28 53.54 124.52 53.07 124.49 52.97C124.45 52.85 124.15 53.09 123.46 53.58C122.76 54.06 121.6 54.78 119.74 55.32C119.23 55.46 117.67 55.91 115.28 55.94C112.94 55.97 109.58 55.52 106.76 53.1C103.9 50.8 101.77 46.77 101.53 42.3C101.42 40.07 101.78 37.75 102.7 35.61C103.16 34.54 103.75 33.53 104.45 32.58C105.17 31.65 105.99 30.8 106.89 30.04C110.53 27.03 115.59 25.85 119.87 27C124.17 28.15 127.39 31.39 128.76 34.7C130.17 38.05 130.12 41.26 130.01 43.51C129.89 45.79 129.36 47.14 129.23 47.47C128.64 48.96 128.08 49.54 128.19 49.65C128.24 49.72 128.99 49.25 129.66 47.79V47.76Z" fill="#121C2D"/> <path d="M150.331 72.77C150.181 72.29 149.131 70.65 147.361 68.7C145.621 66.73 143.261 64.36 140.841 62.08C138.421 59.79 135.931 57.59 133.951 55.92C133.451 55.5 132.991 55.12 132.581 54.77C132.151 54.44 131.841 54.09 131.331 53.85C130.421 53.5 129.881 53.51 129.701 53.45C129.211 53.36 128.881 53.29 128.641 53.21C128.411 53.13 128.241 53.05 128.141 53.09C128.051 53.11 128.001 53.31 128.241 53.61C128.481 53.92 129.041 54.17 129.731 54.28C129.911 54.33 130.531 54.35 131.141 54.66C131.261 54.73 131.441 54.88 131.631 55.04C131.821 55.19 132.021 55.36 132.231 55.53C132.651 55.88 133.121 56.27 133.621 56.69C135.621 58.37 138.151 60.58 140.601 62.86C143.051 65.13 145.411 67.48 147.101 69.37C148.831 71.25 149.761 72.74 149.821 72.96C150.081 73.44 150.111 73.63 150.241 73.67C150.351 73.72 150.541 73.33 150.311 72.79L150.331 72.77Z" fill="#121C2D"/> <mask id="mask0_771_292656" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="103" y="29" width="25" height="25"> <path d="M111.66 29.85C105.8 31.57 103.17 37.86 103.7 43.66C103.87 45.58 104.55 47.45 105.65 49.02C108.18 52.62 112.57 54.05 116.77 53.68C117.99 53.57 119.21 53.31 120.36 52.89C126.45 50.64 128.7 43.89 127.14 37.8C126.87 36.75 126.49 35.73 126 34.77C124.81 32.45 122.98 30.63 120.54 29.77C118.1 28.91 115.39 28.75 112.91 29.41L111.67 29.87L111.66 29.85Z" fill="white"/> </mask> <g mask="url(#mask0_771_292656)"> <path d="M125.691 30.05C124.541 29.92 108.901 29.31 107.911 29.27C106.621 29.22 106.261 30.02 108.001 30.08C108.971 30.11 125.001 30.58 125.651 30.56C126.371 30.53 126.371 30.12 125.691 30.05Z" fill="#EE2F46"/> <path d="M126.59 36.33C124.83 36.22 111.97 35.91 99.1803 35.87C86.3803 35.83 73.6503 35.73 72.1403 35.69C68.2103 35.63 67.1603 36.43 72.4903 36.51C73.9803 36.55 86.9903 36.6 99.8703 36.59C112.75 36.58 125.51 36.82 126.49 36.84C128.7 36.84 128.64 36.43 126.58 36.33H126.59Z" fill="#51A5DF"/> <path d="M128.711 42.41C127.751 42.39 120.821 42.27 113.911 42.15C107.001 42.02 100.111 42.08 99.3006 42.09C97.1706 42.11 96.6306 42.93 99.5006 42.9C100.301 42.89 107.321 42.79 114.281 42.87C121.241 42.95 128.131 42.95 128.661 42.93C129.851 42.89 129.821 42.48 128.711 42.41Z" fill="#121C2D"/> <path d="M131.711 49.17C130.011 49.08 117.591 48.88 105.241 48.76C92.8808 48.64 80.5908 48.38 79.1308 48.33C75.3308 48.23 74.3108 49.02 79.4608 49.15C82.3408 49.37 129.731 49.62 131.631 49.69C133.761 49.68 133.711 49.26 131.721 49.18L131.711 49.17Z" fill="#EE2F46"/> </g> <path d="M113.18 64.31C111.58 64.29 104.94 64.22 95.79 64.12C91.21 64.12 86.01 64.17 80.5 64.11C77.75 64.07 74.91 64.02 72.06 63.85C71.35 63.8 70.63 63.75 69.93 63.66C69.58 63.62 69.23 63.56 68.9 63.49C68.55 63.41 68.35 63.34 68.1 63.1C67.13 62.25 66.99 60.72 66.98 59.32C67 36.07 67.56 12.91 67.67 10.17C67.78 6.60003 67.7 4.34003 67.5 4.17003C67.31 4.00003 66.99 5.95003 66.84 10.79C66.8 12.14 66.62 18.74 66.49 27.92C66.44 32.51 66.38 37.75 66.32 43.31C66.3 46.09 66.28 48.95 66.26 51.84C66.26 53.29 66.26 54.75 66.25 56.21C66.27 57.68 66.21 59.13 66.33 60.64C66.42 61.39 66.58 62.17 66.99 62.87C67.2 63.22 67.48 63.53 67.8 63.78C67.94 63.9 68.18 64.03 68.38 64.09C68.58 64.15 68.77 64.2 68.95 64.23C70.44 64.49 71.88 64.55 73.33 64.63C76.22 64.76 79.05 64.79 81.81 64.81C87.31 64.8 92.46 64.78 96.94 64.77C105.9 64.81 112.15 64.84 113.05 64.84C117.06 64.82 116.94 64.41 113.19 64.33L113.18 64.31Z" fill="#121C2D"/> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> Conversational commerce</h4> <div class="card-description copy-small"> <p>Increase conversions and drive more sales with conversational messaging for retail, ecommerce engagement, and more.</p> </div> </div> </div> </div> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <div class="card-icon__overlay" target="_self"></div> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="illo_use-cases_customer-care_conversations-api circle medium circle"> <svg width="190" height="80" viewBox="0 0 190 80" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M121.68 31.28C119.53 34.26 118.25 37.91 118.17 41.56C118.12 44.08 118.51 46.62 119.38 49C120.76 52.79 123.49 55.94 127.14 57.68C130.46 59.27 134.3 59.63 137.94 59.07C143.67 58.18 149.19 54.75 151.61 49.48C154.77 42.61 152.56 33.71 147.1 28.9C142.28 24.66 134.51 23.42 128.42 25.88C125.71 26.97 123.39 28.92 121.69 31.28H121.68Z" fill="#EEF7FF"/> <path d="M48.82 56.38C47.59 58.08 46.86 60.16 46.82 62.25C46.79 63.69 47.02 65.14 47.51 66.49C48.3 68.65 49.86 70.45 51.94 71.45C53.84 72.36 56.03 72.56 58.1 72.24C61.37 71.73 64.52 69.77 65.91 66.77C67.71 62.85 66.45 57.77 63.33 55.02C60.58 52.6 56.14 51.89 52.67 53.3C51.12 53.92 49.8 55.04 48.83 56.38H48.82Z" fill="#EEF7FF"/> <path d="M157.15 16.89C155.81 18.75 155.01 21.02 154.96 23.29C154.93 24.86 155.17 26.45 155.71 27.92C156.57 30.28 158.27 32.25 160.55 33.33C162.62 34.32 165.01 34.55 167.28 34.19C170.85 33.64 174.29 31.5 175.8 28.21C177.77 23.93 176.39 18.38 172.99 15.39C169.99 12.75 165.14 11.98 161.35 13.51C159.66 14.19 158.21 15.4 157.15 16.88V16.89Z" fill="#FBEDE3"/> <path d="M149.671 54.66C149.331 53.3 147.921 50.61 147.921 50.61C147.801 50.78 146.991 52.13 146.751 53.26C146.751 53.3 146.741 53.34 146.751 53.37C146.761 53.4 146.791 53.42 146.821 53.44C147.041 53.59 147.271 53.72 147.491 53.86C148.191 54.33 148.751 55 149.501 55.39C149.571 55.43 149.671 55.46 149.721 55.39C149.741 55.36 149.751 55.32 149.751 55.28C149.751 55.06 149.711 54.85 149.651 54.63L149.671 54.66Z" fill="white"/> <path d="M149.61 55.07C147.16 51.98 143.66 52.36 141.47 53.63C136.97 56.24 136.46 62 141.45 64.62C142.84 65.35 144.42 65.75 145.99 65.66C147.13 65.6 148.26 65.28 149.39 65.44C150.26 65.56 151.07 65.95 151.88 66.3C155.25 67.76 159.21 68.59 162.55 67.06C164.16 66.32 165.57 65.06 167.32 64.78C168.6 64.57 169.9 64.91 171.2 64.95C173.66 65.01 176.15 63.86 177.6 61.87C179.06 59.88 179.4 57.11 178.38 54.87C177.36 52.63 174.98 51.05 172.52 51.08C171.01 51.1 169.4 51.66 168.05 50.99C167.12 50.53 166.55 49.6 165.87 48.82C161.54 43.87 153.42 43.06 147.82 51.05" fill="white"/> <path d="M149.75 49.08C150 48.79 150.51 48.34 151.24 47.73C151.61 47.44 152.07 47.16 152.56 46.82C153.1 46.56 153.65 46.2 154.34 45.99C155.66 45.49 157.33 45.19 159.14 45.44C160.05 45.53 160.97 45.84 161.89 46.21C162.78 46.66 163.71 47.16 164.5 47.9C164.93 48.23 165.28 48.66 165.67 49.06C166.03 49.48 166.37 49.96 166.81 50.41C167.23 50.86 167.8 51.28 168.45 51.46C169.1 51.64 169.77 51.63 170.4 51.58C171.04 51.52 171.66 51.42 172.27 51.39C172.87 51.37 173.48 51.43 174.07 51.59C175.25 51.92 176.36 52.62 177.18 53.59C178.87 55.52 179.06 58.59 177.76 60.91C176.48 63.25 173.72 64.68 171.03 64.54C169.69 64.48 168.21 64.08 166.71 64.5C165.24 64.91 164.09 65.81 162.9 66.43C160.53 67.73 157.69 67.65 155.19 67.01C153.92 66.69 152.72 66.23 151.55 65.71C150.96 65.45 150.33 65.19 149.66 65.07C148.98 64.94 148.3 64.99 147.68 65.06C146.43 65.24 145.31 65.36 144.2 65.14C143.1 64.94 142.06 64.55 141.18 63.98C140.29 63.44 139.55 62.74 139.05 61.93C138.56 61.12 138.32 60.22 138.31 59.37C138.31 58.51 138.5 57.71 138.81 57C139.16 56.32 139.56 55.7 140.04 55.24C141.98 53.3 143.98 53.12 144.55 53.1C146.19 53.01 147.46 53.58 148.24 54.11C149.04 54.64 149.45 55.07 149.59 55.05C149.65 55.05 149.63 54.95 149.52 54.74C149.41 54.52 149.18 54.22 148.8 53.83C148.4 53.46 147.83 53.01 147 52.68C146.17 52.35 145.08 52.16 143.84 52.35C143.5 52.41 142.81 52.52 141.92 52.93C141.03 53.34 139.94 54.02 138.98 55.21C138.51 55.81 138.08 56.53 137.8 57.37C137.54 58.22 137.42 59.18 137.58 60.18C137.73 61.17 138.16 62.18 138.87 63.03C139.57 63.88 140.51 64.55 141.54 65.08C142.58 65.58 143.76 65.93 145 66.01C146.26 66.12 147.51 65.77 148.68 65.75C149.85 65.7 150.95 66.3 152.18 66.8C153.41 67.3 154.7 67.72 156.06 67.97C157.42 68.22 158.85 68.3 160.26 68.07C161.68 67.88 163.06 67.24 164.25 66.49C165.45 65.76 166.65 65.04 167.98 65.03C169.31 64.98 170.76 65.41 172.26 65.2C175.21 64.89 177.98 62.85 178.88 60.01C179.35 58.62 179.4 57.11 179.03 55.72C178.67 54.32 177.81 53.08 176.72 52.21C175.63 51.34 174.29 50.79 172.93 50.71C171.56 50.64 170.32 51.03 169.17 50.92C168 50.86 167.22 50 166.51 49.07C165.77 48.14 164.91 47.34 164 46.7C162.16 45.43 160.11 44.77 158.25 44.73C156.38 44.66 154.76 45.12 153.49 45.67C152.24 46.28 151.29 46.92 150.66 47.48C150.34 47.76 150.08 47.99 149.87 48.16C149.68 48.35 149.55 48.5 149.47 48.58C149.14 48.95 148.84 49.26 148.62 49.55C148.41 49.85 148.24 50.1 148.11 50.31C147.85 50.72 147.75 50.94 147.8 50.98C147.85 51.02 148.04 50.86 148.35 50.53C148.67 50.19 149.09 49.67 149.74 49.04L149.75 49.08Z" fill="#121C2D"/> <path d="M21.3296 21.06C18.7296 24.66 17.1896 29.06 17.0896 33.46C17.0196 36.5 17.5096 39.57 18.5496 42.43C20.2096 47 23.5096 50.8 27.9196 52.91C31.9296 54.82 36.5596 55.27 40.9496 54.58C47.8696 53.51 54.5296 49.37 57.4496 43.01C61.2596 34.72 58.5996 23.99 52.0096 18.18C46.1996 13.06 36.8196 11.57 29.4696 14.54C26.1996 15.86 23.3996 18.21 21.3396 21.06H21.3296Z" fill="#FBEDE3"/> <path d="M15.7703 16.07C15.8403 16.02 15.9103 15.96 15.9703 15.88C16.1603 15.65 16.2703 15.36 16.3903 15.09C17.8403 11.64 20.9003 8.79998 24.9003 9.34998C26.8603 9.61998 28.6203 10.7 30.0403 12.02C30.3803 12.34 30.8703 12.92 31.3403 12.93C31.5403 12.93 32.0003 12.83 32.1903 12.77C34.6103 12.06 36.1803 11.86 38.5403 12.75C40.9003 13.64 43.0303 15.94 43.4703 18.42C43.6503 19.42 43.5203 20.47 43.2603 21.46C42.9703 22.57 42.0303 23.63 41.1203 24.28C40.3303 24.85 39.3903 25.22 38.4203 25.32C37.3303 25.44 36.2603 25.52 35.1703 25.4C33.9803 25.27 32.7203 24.91 31.5403 25.26C30.9103 25.45 30.3503 25.82 29.7703 26.13C27.9403 27.1 25.6103 27.4 23.8203 26.36C22.9503 25.85 22.2203 25.06 21.2503 24.78C20.0403 24.44 18.6503 24.9 17.4603 25.15C15.5903 25.55 13.8703 25.55 12.5603 23.99C10.8503 21.96 10.6503 18.09 13.3103 16.71C13.6003 16.56 13.9103 16.47 14.2303 16.4C14.7203 16.3 15.3403 16.34 15.7703 16.04V16.07Z" fill="white"/> <path d="M17.7502 13.14C18.1202 12.69 19.0402 11.3 21.0702 10.3C22.0802 9.84999 23.4102 9.54999 24.8402 9.70999C26.2802 9.85999 27.7802 10.53 29.1402 11.6C29.4802 11.87 29.8202 12.16 30.1502 12.46L30.6502 12.94C30.8902 13.17 31.2102 13.26 31.5202 13.26C31.6702 13.26 31.8402 13.23 31.9702 13.18L32.3002 13.07C32.5202 12.99 32.7502 12.94 32.9802 12.88C33.4402 12.77 33.9102 12.69 34.3902 12.64C36.3002 12.45 38.4002 12.77 40.1002 13.92C41.7602 15.06 43.1002 16.99 43.2502 19.09C43.3202 20.13 43.0902 21.21 42.5902 22.13C42.0802 23.05 41.2802 23.81 40.3602 24.36C38.5002 25.47 36.2202 25.8 34.1502 25.12C33.6102 24.98 33.0302 24.85 32.4202 24.84C31.8102 24.83 31.1902 25 30.6802 25.24C29.6402 25.69 28.7302 26.32 27.8002 26.54C26.8402 26.75 25.8302 26.62 24.8902 26.33C24.4202 26.18 23.9502 26.01 23.5502 25.78C23.1302 25.55 22.7202 25.26 22.2602 25.01C21.8102 24.76 21.2802 24.55 20.7202 24.52C20.1602 24.49 19.6502 24.63 19.1902 24.75C18.3002 25.02 17.4502 25.18 16.6102 25.21C14.9402 25.28 13.4102 24.7 12.5402 23.66C12.0902 23.15 11.7902 22.57 11.6202 22C11.4402 21.42 11.4402 20.85 11.4702 20.34C11.6102 19.31 12.0802 18.54 12.5202 18.04C12.9602 17.53 13.3702 17.28 13.5802 17.14C14.6802 16.48 15.7602 16.35 16.5102 16.41C17.2602 16.47 17.7102 16.63 17.8202 16.54C17.8702 16.51 17.8202 16.43 17.6702 16.32C17.5102 16.2 17.2502 16.03 16.8202 15.91C16.0102 15.65 14.3802 15.52 12.7202 16.76C12.5102 16.94 12.0502 17.28 11.5902 17.94C11.1302 18.58 10.6702 19.58 10.6602 20.84C10.6602 22.09 11.2002 23.57 12.4202 24.65C13.6502 25.75 15.5302 26.18 17.3602 25.95C18.2802 25.87 19.2402 25.53 20.0802 25.34C20.9202 25.14 21.7002 25.53 22.5502 26.07C22.9702 26.33 23.4502 26.62 23.9502 26.8C24.4402 26.99 24.9602 27.15 25.5002 27.26C26.5602 27.47 27.7702 27.47 28.8402 26.98C29.8702 26.54 30.7902 25.89 31.7502 25.65C32.7102 25.42 33.7502 25.8 34.8802 26.05C37.2102 26.51 39.7002 25.86 41.5702 24.38C42.5002 23.64 43.2502 22.63 43.6302 21.49C44.0202 20.36 44.0602 19.12 43.7802 17.97C43.5002 16.82 42.9202 15.79 42.1902 14.91C41.4802 14.03 40.5502 13.31 39.5602 12.82C37.5402 11.85 35.3002 11.75 33.3302 12.14C32.8302 12.23 32.3502 12.37 31.8802 12.53C31.4602 12.68 31.2202 12.65 30.9202 12.31C30.2402 11.65 29.5302 11.06 28.7902 10.57C27.3102 9.56999 25.6502 9.03999 24.1402 9.05999C22.6402 9.05999 21.3302 9.46999 20.3502 10.02C19.3702 10.58 18.7002 11.23 18.2402 11.72C17.7802 12.22 17.5202 12.58 17.4202 12.73C16.5102 14.04 16.3502 14.83 16.4402 14.87C16.5602 14.93 16.9302 14.27 17.7702 13.13L17.7502 13.14Z" fill="#121C2D"/> <path d="M97.6699 70.84C114.675 70.84 128.46 57.0549 128.46 40.05C128.46 23.0452 114.675 9.26001 97.6699 9.26001C80.665 9.26001 66.8799 23.0452 66.8799 40.05C66.8799 57.0549 80.665 70.84 97.6699 70.84Z" fill="#EF2F46"/> <path d="M91.2994 54.22C89.6094 53.29 87.9494 53.28 86.1694 54.54C82.7894 56.95 79.0194 59.14 76.3994 62.43C81.9194 67.68 89.3694 70.92 97.5894 70.92C104.929 70.92 111.669 68.34 116.959 64.05C114.449 61.06 111.449 57.39 107.749 56.17C106.409 55.73 105.599 55.33 104.939 55.29C104.939 55.28 104.939 55.26 104.939 55.25" fill="white"/> <path d="M104.38 46.8C104.45 49.12 104.51 51.43 104.58 53.75C104.6 54.55 104.61 55.42 104.13 56.07C103.68 56.67 102.92 56.94 102.19 57.11C99.7599 57.67 97.1699 57.54 94.8099 56.72C94.3399 56.56 93.7799 56.38 93.3699 56.66C93.1199 56.84 92.9999 57.15 92.9099 57.44C92.2899 59.4 92.1199 61.52 91.1299 63.31C89.4699 66.34 85.4399 68.63 82.2199 69.63C76.5499 71.39 70.9299 68.12 70.6099 61.96C70.3899 57.76 72.6899 53.69 75.3499 50.6C76.2599 49.55 77.2799 48.42 77.3399 47.04C77.4099 45.1 75.5999 43.68 74.8299 41.9C73.9199 39.79 74.5599 37.35 75.3799 35.2C76.1999 33.05 77.2099 30.85 77.0099 28.56C76.7299 25.33 73.1599 24 70.9599 21.62C68.7599 19.24 67.6499 14.97 68.4999 11.85C69.0599 9.80998 70.8999 8.22998 72.9699 7.76998C75.0399 7.30998 77.2699 7.87998 78.9999 9.09998C80.5099 10.16 81.5999 11.95 83.4499 12.02C84.4099 12.06 85.5999 11.47 86.4899 11.12C88.4599 10.36 90.5299 9.78998 92.6399 9.65998C95.1699 9.49998 97.7399 9.95998 100.06 11C104.68 13.08 108.05 17.31 110.1 21.94C112.15 26.57 113.02 31.62 113.82 36.62C113.98 37.59 114.13 38.58 113.91 39.53C113.63 40.76 112.86 42.67 111.93 43.53C110.05 45.26 107.71 45.67 105.29 46.48" fill="white"/> <path d="M110.9 30.53C111.341 30.53 111.7 30.1718 111.7 29.73C111.7 29.2882 111.341 28.93 110.9 28.93C110.458 28.93 110.1 29.2882 110.1 29.73C110.1 30.1718 110.458 30.53 110.9 30.53Z" fill="black" stroke="#0F1C2E" stroke-width="0.3" stroke-miterlimit="10"/> <path d="M98.8693 32.9C99.3112 32.9 99.6693 32.5418 99.6693 32.1C99.6693 31.6582 99.3112 31.3 98.8693 31.3C98.4275 31.3 98.0693 31.6582 98.0693 32.1C98.0693 32.5418 98.4275 32.9 98.8693 32.9Z" fill="black" stroke="#0F1C2E" stroke-width="0.3" stroke-miterlimit="10"/> <path d="M84.4596 12.23C84.8096 12.04 86.2096 11.04 88.4396 10.4C90.6496 9.74997 93.6796 9.52997 96.5396 10.23C99.4096 10.9 102.02 12.39 103.8 13.82C105.61 15.24 106.66 16.52 106.9 16.77C108.05 18.16 109.03 18.07 107.4 16.11C107.15 15.86 106.03 14.53 104.1 13.06C102.19 11.6 99.4096 10.08 96.3696 9.46997C93.3396 8.82997 90.1896 9.14997 87.9696 9.90997C85.7196 10.64 84.3796 11.68 84.1896 11.8C83.3596 12.47 83.6596 12.76 84.4496 12.25L84.4596 12.23Z" fill="#0F1C2E"/> <path d="M92.34 11.88C92.56 11.88 93.45 11.74 94.69 11.86C95.92 11.97 97.47 12.39 98.86 13.1C100.27 13.81 101.47 14.84 102.26 15.76C103.05 16.68 103.46 17.45 103.56 17.61C103.98 18.44 104.86 18.4 104.23 17.14C104.12 16.98 103.67 16.13 102.77 15.15C101.89 14.17 100.55 13.09 99.02 12.39C97.51 11.66 95.85 11.29 94.57 11.24C93.29 11.16 92.4 11.35 92.28 11.37C91.72 11.5 91.83 11.9 92.33 11.88H92.34Z" fill="#0F1C2E"/> <path d="M91.0494 14.44C91.1994 14.49 91.8194 14.63 92.6494 14.93C93.4794 15.23 94.4894 15.72 95.4094 16.34C97.2994 17.56 98.6094 19.4 98.7394 19.61C99.1094 20.17 99.9194 19.92 99.3694 19.09C99.2294 18.87 97.7494 16.9 95.6894 15.67C93.6794 14.36 91.3294 13.93 91.1594 13.93C90.7494 13.9 90.7094 14.31 91.0494 14.43V14.44Z" fill="#0F1C2E"/> <path d="M87.4994 17.6C87.6394 17.66 88.2394 17.8 89.0194 18.12C89.7994 18.45 90.7294 18.99 91.5594 19.67C93.2594 21.01 94.2094 22.97 94.2894 23.19C94.5394 23.77 95.3894 23.68 94.9994 22.79C94.9094 22.55 93.7995 20.41 91.9095 19.04C90.0895 17.58 87.7894 17.09 87.6294 17.1C87.2294 17.06 87.1794 17.47 87.5094 17.6H87.4994Z" fill="#0F1C2E"/> <path d="M84.4092 21.59C84.4092 21.89 84.8492 24.05 85.5392 26.13C86.2092 28.21 87.1392 30.19 87.2592 30.42C87.5592 31.03 88.3592 30.81 87.9592 30.01C87.8492 29.79 86.8892 27.83 86.1792 25.78C85.4392 23.75 84.9692 21.65 84.9092 21.49C84.7792 21.14 84.3792 21.23 84.3992 21.58L84.4092 21.59Z" fill="#0F1C2E"/> <path d="M92.73 58.0499C92.68 57.7399 92.53 56.9599 92.41 55.7899C92.28 54.6199 92.2 53.0799 92.08 51.2799C91.93 49.4899 91.78 47.3799 90.95 45.2999C90.57 44.2499 89.96 43.2499 89.21 42.3499L88.62 41.6999C88.42 41.4899 88.18 41.3099 87.96 41.1099C87.52 40.7099 87.05 40.3699 86.57 40.0399C84.69 38.7399 82.72 37.5199 81.55 35.8299C80.99 34.9899 80.68 34.0299 80.72 33.1299C80.75 32.2199 81.17 31.4199 81.8 30.9999C82.42 30.5599 83.21 30.5199 83.87 30.6099C84.54 30.7099 85.11 30.9699 85.56 31.2599C86.46 31.8399 86.92 32.4499 87.1 32.6399C87.98 33.6999 88.76 34.2699 88.95 34.1499C89.11 34.0399 88.79 33.3999 87.53 31.9099C87.34 31.7199 86.82 31.0599 85.73 30.4299C85.19 30.1299 84.48 29.8399 83.65 29.7899C82.84 29.7199 81.81 29.8899 81.04 30.5999C80.26 31.2999 79.87 32.4299 79.96 33.5199C80.02 34.6199 80.49 35.7199 81.21 36.6199C82.65 38.4299 84.73 39.6099 86.58 40.9099C87.51 41.5599 88.33 42.3099 89 43.1799C89.68 44.0399 90.14 45.0299 90.52 46.0099C91.19 48.0099 91.36 50.0299 91.5 51.7799C91.63 53.5299 91.73 55.0299 91.89 56.1299C92.03 57.2299 92.19 57.9299 92.22 58.0999C92.64 59.6499 93.02 59.4699 92.74 58.0499H92.73Z" fill="#0F1C2E"/> <path d="M78.7496 26.83C78.1796 26.61 75.5196 25.82 72.8596 23.26C71.5396 22.01 70.2596 20.32 69.3896 18.31C68.9396 17.31 68.6196 16.22 68.4096 15.11C68.2196 14 68.1996 12.83 68.5396 11.78C68.8596 10.73 69.6096 9.85996 70.5696 9.32996C71.5196 8.78996 72.6196 8.55996 73.6796 8.53996C75.8196 8.52996 77.7796 9.35996 79.1896 10.41C80.6196 11.46 81.5396 12.72 82.1096 13.71C82.6896 14.71 82.9396 15.45 83.0396 15.7C83.5196 17.02 83.8296 17.88 84.0596 17.91C84.2396 17.95 84.4196 17.08 83.7096 15.17C83.5996 14.91 83.3096 14.12 82.6596 13.06C82.0096 12.01 80.9696 10.66 79.3596 9.55996C77.7696 8.47996 75.5896 7.64996 73.2096 7.80996C72.0296 7.89996 70.8196 8.24996 69.7796 8.96996C68.7296 9.67996 67.9696 10.85 67.7296 12.1C67.4696 13.34 67.5896 14.6 67.8396 15.77C68.1096 16.94 68.5096 18.06 69.0096 19.09C70.0196 21.15 71.4096 22.82 72.7896 24.05C75.5896 26.54 78.2296 27.2 78.5496 27.32C80.1696 27.71 80.1796 27.28 78.7596 26.85L78.7496 26.83Z" fill="#0F1C2E"/> <path d="M71.7591 60.29C71.7291 59.99 71.5691 59.22 71.5891 58.12C71.5991 57.57 71.6891 56.95 71.9591 56.3C72.2191 55.65 72.6391 54.99 73.1691 54.32C73.7091 53.66 74.2991 52.95 75.0091 52.31C75.6991 51.66 76.5791 50.95 76.9991 49.85C77.4291 48.77 77.3591 47.56 77.0891 46.47C76.8191 45.37 76.3291 44.32 75.8491 43.33C75.3691 42.34 74.9091 41.35 74.6691 40.34C74.4191 39.33 74.4391 38.31 74.8091 37.42C75.1791 36.52 75.8091 35.74 76.3591 34.93C76.9291 34.14 77.4091 33.24 77.6191 32.35C78.0791 30.57 77.7691 28.97 77.3791 27.87C76.9591 26.77 76.4891 26.12 76.3191 25.91C75.4391 24.73 74.4591 24.48 74.3391 24.6C74.1491 24.78 74.7791 25.19 75.8091 26.58C75.9291 26.79 76.3691 27.36 76.6991 28.39C77.0291 29.39 77.2491 30.87 76.7691 32.45C76.5391 33.24 76.0791 33.99 75.5091 34.79C74.9591 35.59 74.2891 36.45 73.9591 37.55C73.6191 38.66 73.7391 39.87 74.0791 40.96C74.4191 42.06 74.9291 43.07 75.4191 44.07C75.9091 45.05 76.3291 46.07 76.5291 47.1C76.7391 48.12 76.6691 49.17 76.1991 50.01C75.7291 50.85 74.9291 51.47 74.2291 52.16C73.5391 52.88 72.9391 53.57 72.4291 54.28C71.9191 54.99 71.5191 55.72 71.2991 56.43C71.0791 57.15 71.0391 57.81 71.0391 58.36C71.0891 59.46 71.2391 60.13 71.2691 60.3C71.5991 61.81 71.9891 61.67 71.7891 60.27L71.7591 60.29Z" fill="#0F1C2E"/> <path d="M72.9895 31.9799C72.8295 32.2999 72.4696 33.1299 71.6396 34.1199C70.8396 35.0699 69.3996 36.2499 67.4696 36.3199C67.0096 36.3199 66.5296 36.2199 66.1896 35.9299C65.8496 35.6499 65.6896 35.1699 65.7096 34.6699C65.7296 33.6599 66.5795 32.6899 67.4495 31.9099C68.3695 31.1699 69.5795 30.6699 70.8095 30.2499C71.4295 30.0399 72.0696 29.8499 72.7196 29.6799L73.2896 29.5299C73.4596 29.4999 73.5596 29.4299 73.6796 29.3799C73.7796 29.3199 73.9496 29.2799 73.9996 29.2099C74.1296 29.0599 74.1895 28.7699 74.0895 28.5499C74.0395 28.4399 73.9796 28.3499 73.8896 28.2999L73.5595 28.1499C73.3795 28.1299 73.1995 28.0899 73.0195 28.0799L72.7095 28.0499L72.1096 28.0099C71.7096 27.9899 71.3195 27.9899 70.9195 27.9899C70.1295 27.9899 69.3495 27.9999 68.5895 27.9599C67.8295 27.9299 67.1096 27.7899 66.3696 27.5799C65.6396 27.3799 64.9396 27.1299 64.2896 26.7999C63.6496 26.4699 63.0496 26.0599 62.5696 25.5599C62.0296 25.0599 61.8996 24.5999 62.2396 24.1099C62.5396 23.6499 63.1596 23.4399 63.7896 23.3499C64.4396 23.2599 65.0795 23.2199 65.6995 23.2199C68.1995 23.2499 70.2696 24.0599 71.6896 24.8299C73.1096 25.6299 73.9196 26.3699 74.1896 26.6199C75.4896 27.7899 76.1996 28.6699 76.4396 28.5999C76.5496 28.5799 76.4995 28.3299 76.2395 27.8399C75.9595 27.3599 75.4495 26.6199 74.4895 25.7899C74.1995 25.5499 73.3196 24.7399 71.7596 23.9599C70.2196 23.1699 67.9696 22.3999 65.3196 22.4499C64.9896 22.4499 64.6496 22.4699 64.3196 22.5099C63.9796 22.5399 63.6395 22.5799 63.2795 22.6599C62.5896 22.7999 61.7296 23.2299 61.4096 24.0899C61.2396 24.4999 61.2796 25.0499 61.5196 25.4399C61.7496 25.8299 62.0296 26.0799 62.3096 26.3499C62.8796 26.8699 63.5496 27.2799 64.2496 27.6099C64.9496 27.9299 65.6896 28.1799 66.4396 28.3599C67.1696 28.5599 67.9896 28.6799 68.7496 28.6999C69.5196 28.7299 70.2795 28.7099 71.0295 28.6999C71.3995 28.6999 71.7696 28.6999 72.1396 28.7199L72.6796 28.7499L72.9696 28.7799C73.0296 28.7599 73.0895 28.8499 73.0195 28.8799L72.4096 29.0499C71.7196 29.2399 71.0296 29.4499 70.3696 29.6899C69.0496 30.1799 67.7496 30.7199 66.7296 31.6899C66.2596 32.1599 65.8195 32.6499 65.4895 33.2399C65.1595 33.8199 64.9996 34.5199 65.1096 35.1799C65.1996 35.8399 65.6695 36.4699 66.2695 36.7099C66.8595 36.9699 67.4495 36.9699 67.9895 36.8999C70.1595 36.5699 71.5195 35.2099 72.2795 34.2299C73.0495 33.2099 73.3496 32.4499 73.4296 32.2599C73.8196 31.2899 73.7995 30.7599 73.6995 30.7399C73.5795 30.7099 73.3695 31.1499 72.9895 31.9899V31.9799Z" fill="#0F1C2E"/> <path d="M115.42 26.07C115.51 26.26 115.78 26.74 115.92 27.54C116.08 28.32 116.08 29.43 115.7 30.59C115.51 31.17 115.21 31.76 114.77 32.25C114.33 32.74 113.71 33.14 113.04 33.37C111.69 33.88 110.04 33.45 108.83 32.5C107.6 31.58 106.71 30.14 106.52 28.75C106.44 28.09 106.7 27.52 107.22 27.15C107.72 26.77 108.34 26.54 108.93 26.36C110.11 26.03 111.19 25.9 112.01 25.76C112.85 25.62 113.38 25.48 113.55 25.46C114.02 25.38 114.34 25.35 114.59 25.36C114.84 25.36 115.02 25.39 115.1 25.32C115.17 25.26 115.15 25.08 114.84 24.86C114.54 24.64 113.92 24.55 113.22 24.69C113.01 24.72 112.48 24.86 111.67 24.99C110.85 25.13 109.73 25.27 108.45 25.68C107.82 25.9 107.11 26.17 106.5 26.74C106.18 27.01 105.95 27.41 105.81 27.84C105.76 28.06 105.73 28.29 105.72 28.51C105.75 28.73 105.75 28.96 105.8 29.16C106.17 30.8 107.24 32.3 108.68 33.28C110.11 34.27 112.08 34.57 113.61 33.84L114.16 33.55C114.33 33.44 114.49 33.31 114.65 33.19C114.98 32.96 115.24 32.65 115.48 32.35C115.94 31.73 116.21 31.06 116.38 30.42C116.72 29.14 116.62 27.99 116.43 27.19C116.24 26.38 115.93 25.92 115.87 25.8C115.53 25.27 115.16 25.2 115.11 25.29C115.04 25.39 115.19 25.6 115.41 26.02L115.42 26.07Z" fill="#0F1C2E"/> <path d="M102.35 30.1C102.35 30.1 102.54 29.87 102.82 29.7C103.1 29.52 103.53 29.38 103.97 29.32C104.88 29.19 105.76 29.48 105.84 29.52C106.06 29.61 106.54 28.93 106.09 28.75C105.97 28.69 104.87 28.39 103.81 28.63C103.28 28.73 102.76 28.95 102.42 29.23C102.07 29.5 101.93 29.79 101.91 29.83C101.84 30.03 102.23 30.19 102.34 30.11L102.35 30.1Z" fill="#0F1C2E"/> <path d="M101.56 29.26C101.64 29.45 101.92 29.93 102.06 30.73C102.22 31.51 102.22 32.62 101.84 33.78C101.65 34.36 101.35 34.95 100.91 35.44C100.47 35.93 99.8504 36.33 99.1804 36.56C97.8304 37.07 96.1804 36.64 94.9704 35.69C93.7404 34.77 92.8504 33.33 92.6604 31.94C92.5804 31.28 92.8404 30.71 93.3604 30.34C93.8604 29.96 94.4804 29.73 95.0704 29.55C96.2504 29.22 97.3304 29.09 98.1504 28.95C98.9904 28.81 99.5204 28.67 99.6904 28.65C100.16 28.57 100.48 28.54 100.73 28.55C100.98 28.55 101.16 28.58 101.24 28.51C101.31 28.45 101.29 28.27 100.98 28.05C100.68 27.83 100.06 27.74 99.3604 27.88C99.1504 27.91 98.6203 28.05 97.8103 28.18C96.9903 28.32 95.8703 28.46 94.5903 28.87C93.9603 29.09 93.2504 29.36 92.6404 29.93C92.3204 30.2 92.0903 30.6 91.9503 31.03C91.9003 31.25 91.8704 31.48 91.8604 31.7C91.8904 31.92 91.8904 32.15 91.9404 32.35C92.3104 33.99 93.3804 35.49 94.8204 36.47C96.2504 37.46 98.2204 37.76 99.7504 37.03L100.3 36.74C100.47 36.63 100.63 36.5 100.79 36.38C101.12 36.15 101.38 35.84 101.62 35.54C102.08 34.92 102.35 34.25 102.52 33.61C102.86 32.33 102.76 31.18 102.57 30.38C102.38 29.57 102.07 29.11 102.01 28.99C101.67 28.46 101.3 28.39 101.25 28.48C101.18 28.58 101.33 28.79 101.55 29.21L101.56 29.26Z" fill="#0F1C2E"/> <path d="M87.17 31.83C87.24 31.77 87.56 31.52 88.08 31.28C88.6 31.04 89.33 30.82 90.07 30.65C91.55 30.32 93.08 30.19 93.26 30.16C93.73 30.11 93.78 29.29 93.13 29.36C92.95 29.38 91.36 29.56 89.81 29.97C89.04 30.18 88.28 30.45 87.72 30.75C87.16 31.05 86.83 31.39 86.8 31.45C86.62 31.7 86.97 31.93 87.16 31.82L87.17 31.83Z" fill="#0F1C2E"/> <path d="M106.69 36.53C106.82 36.51 107.46 36.32 107.89 35.59C108.1 35.24 108.24 34.74 108.14 34.23C108.05 33.73 107.79 33.29 107.55 32.9C107.3 32.5 107.11 32.18 106.99 31.8C106.87 31.42 106.78 31.04 106.72 30.71C106.6 30.05 106.58 29.57 106.57 29.47C106.57 28.99 105.76 28.73 105.76 29.56C105.76 29.67 105.8 30.21 105.96 30.93C106.04 31.29 106.14 31.7 106.3 32.13C106.45 32.58 106.75 33.01 106.99 33.36C107.23 33.73 107.43 34.09 107.48 34.43C107.54 34.76 107.44 35.1 107.3 35.35C107 35.87 106.57 36 106.53 36.03C106.31 36.14 106.32 36.56 106.68 36.52L106.69 36.53Z" fill="#0F1C2E"/> <path d="M94.0995 28.2699C94.2395 28.1799 95.1795 27.3899 96.2895 26.9299C97.3795 26.4299 98.5695 26.2799 98.7095 26.2699C99.0595 26.2299 99.1195 25.4099 98.5695 25.4699C98.4195 25.4799 97.0895 25.6999 95.9195 26.3099C94.7295 26.8799 93.7995 27.8099 93.7495 27.8899C93.6195 28.0799 93.9195 28.3599 94.0995 28.2699Z" fill="#0F1C2E"/> <path d="M112.319 23.7399C112.219 23.6399 111.279 23.2799 110.289 23.2999C109.299 23.2799 108.349 23.6399 108.249 23.6899C107.959 23.8199 108.269 24.5699 108.579 24.4299C108.669 24.3899 109.479 24.0399 110.349 24.0199C111.219 23.9599 112.069 24.2199 112.139 24.2299C112.299 24.2299 112.449 23.8499 112.319 23.7499V23.7399Z" fill="#0F1C2E"/> <path d="M96.42 46.13C97.03 46.35 99.75 47.43 103.67 47.25C105.61 47.15 107.85 46.68 109.91 45.48C111.93 44.31 113.89 42.42 114.56 39.9C114.92 38.65 114.78 37.3 114.45 36.13C114.13 34.94 113.7 33.85 113.44 32.76C112.88 30.57 112.6 28.43 112.25 26.56C111.91 24.69 111.48 23.09 111.02 21.92C110.58 20.75 110.13 20.02 109.98 19.76C109.18 18.42 108.31 17.88 108.15 17.96C108.06 18 108.1 18.22 108.33 18.6C108.44 18.79 108.61 19.02 108.78 19.33C108.97 19.62 109.19 19.97 109.42 20.41C109.56 20.64 109.95 21.35 110.38 22.48C110.81 23.61 111.21 25.19 111.55 27.07C111.91 28.94 112.19 31.13 112.84 33.4C113.15 34.54 113.61 35.65 113.86 36.79C114.13 37.93 114.12 39.1 113.73 40.2C112.95 42.41 111.07 44.13 109.11 45.16C107.13 46.21 104.99 46.59 103.17 46.65C99.47 46.76 97 45.74 96.65 45.67C95.09 45.13 94.95 45.51 96.42 46.14V46.13Z" fill="#0F1C2E"/> <path d="M97.8193 40.34C97.8893 40.45 98.2493 40.88 98.8593 41.34C99.4693 41.8 100.349 42.25 101.289 42.51C102.229 42.77 103.219 42.82 103.969 42.74C104.729 42.67 105.259 42.49 105.369 42.46C105.959 42.25 105.749 41.47 105.079 41.7C104.979 41.72 104.509 41.89 103.829 41.96C103.149 42.04 102.239 42.02 101.379 41.78C100.519 41.56 99.7093 41.17 99.1493 40.77C98.5893 40.38 98.2593 40.03 98.2093 39.99C97.9693 39.8 97.6493 40.06 97.8193 40.33V40.34Z" fill="#0F1C2E"/> <path d="M104.01 48.06C104.01 48.31 104.1 49.32 104.24 50.72C104.27 51.07 104.31 51.44 104.35 51.83C104.36 52.22 104.38 52.63 104.4 53.05C104.42 53.49 104.41 53.87 104.46 54.37C104.52 54.83 104.62 55.25 104.54 55.56C104.43 56.13 103.38 56.44 102.68 56.72C101.92 56.97 101.17 57.07 100.52 57.05C99.1998 57.02 98.3298 56.61 98.1598 56.53C97.6898 56.33 97.3198 56.31 97.1898 56.47C97.0598 56.61 97.1898 57 97.9298 57.32C98.1298 57.4 99.1498 57.86 100.66 57.84C101.41 57.84 102.26 57.7 103.1 57.38C103.53 57.21 103.9 57.05 104.35 56.81C104.56 56.69 104.79 56.53 104.97 56.3C105.15 56.08 105.27 55.77 105.29 55.49C105.33 54.93 105.17 54.48 105.14 54.1C105.12 53.66 105.09 53.22 105.07 52.8C105.05 51.95 104.94 51.16 104.86 50.48C104.69 49.11 104.58 48.16 104.55 48.02C104.43 47.41 104.03 47.48 104.04 48.06H104.01Z" fill="#0F1C2E"/> <path d="M96.8293 66C96.5993 65.79 95.1693 64.94 93.2893 64.23C92.3593 63.86 91.3293 63.47 90.3593 63.03C89.8693 62.81 89.3993 62.57 88.9693 62.31C88.7493 62.18 88.5393 62.05 88.3393 61.91L88.0493 61.71C87.9593 61.64 88.0193 61.68 87.9993 61.66C87.9993 61.64 87.9793 61.69 88.0293 61.61C88.0893 61.52 88.1593 61.42 88.2193 61.33C88.3493 61.15 88.4793 60.98 88.5993 60.83C88.8493 60.52 89.1093 60.26 89.3293 60.05C89.7793 59.63 90.1193 59.4 90.2093 59.33C90.5993 59.05 90.7593 58.74 90.6793 58.55C90.5993 58.37 90.2393 58.31 89.6593 58.73C89.5793 58.79 89.3193 58.97 88.8793 59.37C88.6593 59.57 88.3893 59.84 88.0993 60.19C87.9493 60.36 87.7993 60.56 87.6393 60.78C87.5593 60.89 87.4793 61.01 87.3993 61.13C87.3393 61.21 87.1293 61.55 87.2093 61.83C87.2493 61.99 87.3493 62.15 87.4993 62.26C87.6093 62.35 87.6793 62.38 87.7693 62.45C87.9493 62.57 88.1393 62.7 88.3393 62.81C88.7493 63.06 89.2093 63.29 89.6993 63.52C90.6793 63.98 91.7693 64.36 92.7793 64.73C94.8093 65.43 96.3793 66.3 96.5293 66.41C97.0193 66.66 97.2493 66.33 96.8193 65.99L96.8293 66Z" fill="#0F1C2E"/> <path d="M107.69 65.68C107.9 65.43 109.18 63.45 110.44 61.47C110.6 61.22 110.76 60.98 110.91 60.73C110.98 60.61 111.07 60.49 111.15 60.31C111.23 60.14 111.28 59.88 111.21 59.64C111.05 59.18 110.75 59.03 110.59 58.85C110.39 58.68 110.2 58.52 110.03 58.37C109.31 57.78 108.76 57.4 108.65 57.32C108.03 56.91 107.45 57.49 108.24 58.02C108.35 58.1 108.89 58.46 109.6 59.03C109.78 59.17 109.96 59.33 110.16 59.49C110.37 59.65 110.51 59.82 110.5 59.87C110.53 59.93 110.39 60.18 110.23 60.43C110.08 60.68 109.93 60.93 109.77 61.19C108.55 63.21 107.34 65.22 107.26 65.38C107.09 65.75 107.44 65.96 107.69 65.67V65.68Z" fill="#0F1C2E"/> <path d="M106.98 15.31C106.45 14.82 105.53 14.36 104.38 14.01L104.29 13.99C100.67 12.93 97.2898 13.12 95.0898 13.48C92.2598 13.97 89.5598 14.99 87.2898 16.43C86.1098 17.15 84.9298 18.12 83.6698 19.37C83.4098 19.64 83.1198 19.97 82.8498 20.37C82.7098 20.57 82.5898 20.78 82.4898 21C82.4398 21.11 82.3898 21.23 82.3398 21.36C82.2698 21.57 82.2298 21.76 82.2398 21.96C82.2798 22.58 82.4498 22.92 82.5998 23.21C82.6398 23.29 82.6798 23.37 82.7198 23.46C83.0398 24.07 83.0698 24.2 83.0698 24.2C83.1298 25.1 83.1498 26.03 83.1698 27.01C83.2098 29.06 83.2498 31.17 83.6698 33.16C84.1998 35.93 85.6798 38.56 87.7098 40.37C89.7998 42.32 91.9798 43.04 93.0898 43.29C94.3498 43.56 95.2398 43.53 95.6698 43.49C95.7898 43.93 96.1298 44.28 96.6098 44.48C96.8698 44.59 97.1598 44.64 97.4598 44.64C97.6998 44.64 97.9398 44.61 98.1798 44.54C98.7198 44.39 99.1898 44.08 99.4898 43.68C99.8098 43.26 99.9098 42.79 99.7898 42.34C99.6698 41.9 99.3298 41.54 98.8398 41.35C98.3698 41.16 97.8198 41.14 97.2698 41.29C96.8298 41.41 96.4398 41.64 96.1398 41.95C96.0598 41.95 95.9798 41.95 95.8898 41.95H95.7398C95.2998 41.97 94.3698 41.99 93.1398 41.62C91.5498 41.18 89.8598 40.12 88.4998 38.71C86.8298 37.01 85.7098 34.69 85.3598 32.17C85.1398 30.71 85.0998 29.2 85.0898 27.91L85.0598 25.65L85.0298 24.49C85.0298 24.43 85.0298 24.38 85.0298 24.32C85.0298 24.19 85.0298 24.03 84.9698 23.74C84.8898 23.43 84.7898 23.21 84.6998 23.02C84.6398 22.9 84.5798 22.78 84.5298 22.67C84.4198 22.44 84.3198 22.24 84.2598 22.08C84.2398 22.02 84.2298 21.99 84.2198 21.97C84.2398 21.93 84.2698 21.85 84.2998 21.79C84.5198 21.36 84.9298 20.88 85.5398 20.34C86.6098 19.27 87.8598 18.45 88.8398 17.87C91.0498 16.61 93.4798 15.79 95.8798 15.49C99.9198 14.95 102.87 15.81 103.85 16.09C103.96 16.12 104.05 16.15 104.09 16.16C106.92 17.1 107.31 16.61 107.44 16.44C107.6 16.24 107.65 15.88 106.99 15.31H106.98Z" fill="#121C2D"/> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> Customer care</h4> <div class="card-description copy-small"> <p>Support consumers in crucial moments of their journey with scalable, two-way customer care and support.</p> </div> </div> </div> </div> </div> <div id="" class="grid-container two-columns tiny medium-gap equal-heights" style=""> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <div class="card-icon__overlay" target="_self"></div> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="illo_use-cases_digital-marketplace_conversations-api circle medium circle"> <svg width="190" height="80" viewBox="0 0 190 80" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M99.3503 56.81C98.1203 58.51 97.3903 60.59 97.3503 62.68C97.3203 64.12 97.5503 65.57 98.0403 66.92C98.8303 69.08 100.39 70.88 102.47 71.88C104.37 72.79 106.56 72.99 108.63 72.67C111.9 72.16 115.05 70.2 116.44 67.2C118.24 63.28 116.98 58.2 113.86 55.45C111.11 53.03 106.67 52.32 103.2 53.73C101.65 54.35 100.33 55.47 99.3603 56.81H99.3503Z" fill="#EEF7FF"/> <path d="M140.71 28.77C138.78 31.45 137.63 34.72 137.56 37.99C137.51 40.25 137.87 42.53 138.64 44.66C139.87 48.06 142.33 50.89 145.6 52.45C148.58 53.87 152.02 54.2 155.29 53.7C160.43 52.9 165.39 49.82 167.56 45.1C170.39 38.94 168.41 30.95 163.51 26.64C159.19 22.83 152.21 21.72 146.75 23.93C144.32 24.91 142.23 26.66 140.71 28.78V28.77Z" fill="#FBEDE3"/> <path d="M27.1305 18.06C23.4705 23.15 21.2805 29.36 21.1505 35.57C21.0605 39.87 21.7405 44.2 23.2005 48.24C25.5405 54.69 30.2005 60.07 36.4305 63.03C42.0905 65.73 48.6205 66.36 54.8305 65.39C64.6005 63.87 74.0005 58.03 78.1305 49.05C83.5105 37.35 79.7505 22.19 70.4405 13.99C62.2405 6.76 48.9905 4.66 38.6105 8.85C33.9905 10.71 30.0405 14.03 27.1405 18.05L27.1305 18.06Z" fill="#EEF7FF"/> <path d="M128.69 51.05C139.725 51.05 148.67 42.1046 148.67 31.07C148.67 20.0353 139.725 11.09 128.69 11.09C117.655 11.09 108.71 20.0353 108.71 31.07C108.71 42.1046 117.655 51.05 128.69 51.05Z" fill="#EF2F46"/> <path d="M88.6302 32.29C88.6302 32.29 88.7402 32.22 88.8102 32.12C88.8802 32.04 88.9202 31.83 88.9202 31.74C88.9202 31.54 88.9402 31.27 88.9502 30.96C88.9602 30.34 88.9802 29.56 88.9902 28.77C88.9902 27.99 89.0102 27.2 89.0102 26.6C89.0102 26.3 89.0102 26.03 89.0102 25.84C89.0102 25.73 89.0102 25.65 89.0102 25.58C89.0102 25.46 88.9702 25.36 88.9502 25.32C88.8502 25.08 88.6102 24.98 88.4702 25.02C88.3202 25.05 88.2702 25.17 88.2602 25.26C88.2602 25.36 88.2902 25.46 88.2802 25.54C88.2502 25.63 88.2602 25.59 88.2402 25.61H88.2002V25.65C88.2002 25.71 88.2002 25.79 88.2002 25.89C88.2002 26.09 88.2002 26.36 88.2102 26.66C88.2202 27.28 88.2402 28.07 88.2502 28.86C88.2702 29.65 88.2902 30.43 88.3002 31.04C88.3002 31.34 88.3202 31.6 88.3202 31.79C88.3202 31.85 88.3002 31.86 88.3002 31.88C88.3002 31.92 88.2802 32.03 88.2702 32.15C88.2702 32.26 88.3802 32.41 88.6002 32.3L88.6302 32.29Z" fill="#0F1C2E"/> <path d="M84.4496 5.44H53.4696C51.6084 5.44 50.0996 6.9488 50.0996 8.81V72.02C50.0996 73.8812 51.6084 75.39 53.4696 75.39H84.4496C86.3108 75.39 87.8196 73.8812 87.8196 72.02V8.81C87.8196 6.9488 86.3108 5.44 84.4496 5.44Z" fill="white"/> <path d="M88.08 71.8C88.08 68.69 88.11 55.78 88.14 38C88.14 33.55 88.14 28.8 88.15 23.83C88.15 21.34 88.15 18.8 88.15 16.2C88.15 14.9 88.15 13.6 88.15 12.28C88.15 11.62 88.15 10.96 88.15 10.29V9.29001C88.15 8.97001 88.17 8.61001 88.1 8.24001C87.89 6.77001 86.71 5.49001 85.23 5.18001C84.46 5.03001 83.8 5.11001 83.12 5.09001C82.44 5.09001 81.75 5.09001 81.07 5.09001C78.33 5.09001 75.55 5.09001 72.76 5.09001C67.18 5.09001 61.53 5.09001 55.88 5.08001H53.76C53.05 5.05001 52.2 5.19001 51.54 5.61001C50.86 6.00001 50.33 6.63001 50.02 7.34001C49.87 7.70001 49.77 8.08001 49.73 8.47001C49.7 8.88001 49.72 9.20001 49.71 9.56001C49.71 12.37 49.71 15.18 49.71 17.96C49.71 23.53 49.71 29.01 49.71 34.34C49.71 45 49.71 55.03 49.7 63.81C49.7 66.01 49.7 68.12 49.7 70.15C49.7 70.66 49.7 71.16 49.7 71.66C49.68 72.13 49.72 72.75 49.91 73.24C50.26 74.27 51.06 75.1 52.02 75.49C52.5 75.69 53.01 75.78 53.51 75.78C53.96 75.78 54.4 75.78 54.84 75.78C55.71 75.78 56.56 75.78 57.38 75.78C59.02 75.78 60.56 75.78 61.98 75.78C67.66 75.78 71.47 75.78 72.81 75.78C86.72 75.78 90.36 74.97 71.55 74.97C70.24 74.97 66.38 74.97 60.62 74.97C59.18 74.97 57.62 74.97 55.95 74.97C55.12 74.97 54.26 74.97 53.38 74.97C52.6 74.95 51.81 74.59 51.26 73.97C50.99 73.66 50.77 73.29 50.64 72.88C50.51 72.46 50.5 72.07 50.51 71.55C50.51 70.56 50.51 69.56 50.51 68.52C50.51 66.46 50.51 64.31 50.51 62.08C50.51 53.16 50.5 42.98 50.49 32.19C50.49 26.79 50.49 21.24 50.48 15.62C50.48 14.21 50.48 12.8 50.48 11.39V9.27001C50.45 8.54001 50.52 7.96001 50.83 7.38001C51.13 6.82001 51.61 6.35001 52.18 6.08001C52.77 5.78001 53.37 5.76001 54.11 5.78001H58.38C64.07 5.78001 69.75 5.77001 75.35 5.77001C78.15 5.77001 80.92 5.77001 83.67 5.77001C84.38 5.77001 85 5.73001 85.57 5.98001C86.15 6.20001 86.64 6.60001 86.99 7.10001C87.33 7.61001 87.51 8.21001 87.52 8.82001C87.52 9.49001 87.52 10.16 87.52 10.83C87.52 21.51 87.54 31.52 87.54 40.22C87.56 57.62 87.58 69.76 87.58 71.51C87.76 73.45 86.58 74.54 85.8 74.93C84.97 75.34 84.47 75.3 84.48 75.38C84.47 75.41 84.97 75.57 85.89 75.25C86.34 75.08 86.88 74.76 87.34 74.18C87.81 73.62 88.14 72.75 88.11 71.8H88.08Z" fill="#0F1C2E"/> <path d="M68.7095 8.74001C68.5395 8.72001 67.8195 8.70001 66.8295 8.68001C66.3395 8.68001 65.7795 8.67001 65.1795 8.66001C64.5895 8.64001 63.9295 8.68001 63.3895 8.60001C62.8395 8.52001 62.4995 8.20001 62.1495 7.72001C61.8195 7.26001 61.4095 6.76001 60.9895 6.44001C60.1395 5.77001 59.3095 5.65001 59.1495 5.63001C58.7095 5.57001 58.4395 5.81001 58.4495 6.01001C58.4495 6.22001 58.6595 6.38001 59.0995 6.45001C59.2195 6.47001 59.8695 6.56001 60.5795 7.12001C60.9395 7.39001 61.2495 7.78001 61.6395 8.28001C61.8395 8.52001 62.0695 8.78001 62.3895 8.99001C62.7095 9.19001 63.0895 9.29001 63.4295 9.32001C66.0295 9.34001 68.4795 9.25001 68.6895 9.25001C69.1195 9.20001 69.1095 8.79001 68.6995 8.73001L68.7095 8.74001Z" fill="#0F1C2E"/> <path d="M69.2493 9.25C69.4193 9.27 70.1393 9.3 71.1293 9.32C71.6193 9.32 72.1793 9.34001 72.7793 9.35001C73.3793 9.35001 73.9693 9.41 74.6893 9.33C75.0393 9.28 75.4093 9.15 75.7193 8.92C76.0193 8.7 76.2293 8.44 76.4193 8.2C76.7893 7.71 77.0993 7.35 77.4593 7.08C78.1693 6.54 78.8093 6.47 78.9293 6.45C79.2493 6.4 79.4793 6.23 79.5193 6.02C79.5593 5.83 79.3393 5.57 78.7393 5.66C78.5893 5.69 77.7493 5.82001 76.9093 6.53001C76.4793 6.86001 76.0993 7.38 75.7593 7.83C75.4093 8.3 75.0393 8.59001 74.4593 8.64001C72.0193 8.72001 69.4593 8.7 69.2793 8.74C68.8493 8.79 68.8593 9.20001 69.2593 9.26L69.2493 9.25Z" fill="#0F1C2E"/> <path d="M57.03 34.52C56.95 34.34 56.69 34.4 56.68 34.6C56.58 38.44 56.52 42.28 56.5 46.12C56.5 46.36 56.5 46.61 56.61 46.83C56.74 47.07 56.98 47.23 57.22 47.36C59.28 48.56 61.64 49.67 63.9 50.42C64.09 50.19 63.04 47.75 62.8 47.13C62.48 46.32 58.07 36.83 57.02 34.51L57.03 34.52Z" fill="#121C2D"/> <path d="M64.46 34.19L70.46 48.85C70.54 49.04 70.76 49.13 70.94 49.04C71.27 48.87 71.61 48.75 72 48.72C72.83 48.67 73.89 49 74.94 49.38C75.24 49.49 75.51 49.18 75.37 48.9L68.31 34.44C68.23 34.29 68.08 34.19 67.91 34.19H64.47H64.46Z" fill="#EEF7FF"/> <path d="M57.9097 34.21H57.1997C57.1997 34.21 56.6797 34.17 56.6797 34.6C56.6797 34.6 56.8997 34.31 57.2697 35.05L61.0997 47.65C61.2097 48.03 61.3697 48.39 61.6197 48.7C63.4497 50.99 66.7797 51.52 69.0897 50.23C69.4997 50 69.8797 49.71 70.2697 49.44C70.4697 49.3 70.5497 49.05 70.4597 48.83L64.5997 34.5C64.5197 34.31 64.3397 34.18 64.1297 34.18C62.0797 34.18 60.0197 34.2 57.9197 34.2L57.9097 34.21Z" fill="#51A6E0"/> <path d="M68.3898 34.6L75.6998 49.58C75.7298 49.65 75.7898 49.7 75.8698 49.73C76.5898 50 77.2698 50.26 77.8398 50.38C79.4298 50.73 80.9298 49.69 82.4198 48.87C82.5598 48.79 82.6198 48.61 82.5398 48.47L75.0898 34.29C75.0398 34.19 74.9298 34.13 74.8198 34.13C72.7598 34.14 70.7098 34.16 68.6698 34.17C68.4498 34.17 68.2998 34.41 68.3998 34.61L68.3898 34.6Z" fill="#51A6E0"/> <path d="M106.1 46.83L94.5296 34.24C94.4296 34.13 94.2896 34.07 94.1396 34.07C92.5696 34.07 91.0296 34.06 89.5096 34.06C89.2596 34.06 89.1196 34.34 89.2596 34.54L99.5396 49.08C99.5396 49.08 99.6096 49.16 99.6596 49.18C101.64 50.2 104.43 50.11 106.02 48.78C106.61 48.29 106.61 47.39 106.1 46.83Z" fill="#51A6E0"/> <path d="M75.2699 34.63L82.5099 48.41C82.5999 48.58 82.8099 48.65 82.9799 48.56C83.9799 48.06 84.9699 47.75 85.9899 48.12C86.5799 48.33 87.0499 48.75 87.5799 49.07C87.5999 49.08 87.6199 49.09 87.6399 49.1L78.9099 34.26C78.8499 34.15 78.7299 34.09 78.5999 34.09C77.5799 34.09 76.5699 34.1 75.5699 34.11C75.3099 34.11 75.1399 34.39 75.2599 34.63H75.2699Z" fill="#EEF7FF"/> <path d="M85.4092 34.53L94.0592 48.56C94.1492 48.7 94.3292 48.75 94.4792 48.66C95.1792 48.24 95.8992 47.87 96.7092 47.9C97.7692 47.93 98.6392 48.64 99.5592 49.13C99.5692 49.13 99.5792 49.13 99.5892 49.15L89.0092 34.19C88.9492 34.11 88.8592 34.06 88.7592 34.06C87.7192 34.06 86.6892 34.06 85.6592 34.06C85.4192 34.06 85.2792 34.32 85.3992 34.53H85.4092Z" fill="#EEF7FF"/> <path d="M79.0997 34.58L87.5997 49.03C87.6297 49.08 87.6697 49.13 87.7297 49.16C89.3597 50.11 91.5497 50.19 93.2597 49.36C93.5897 49.2 93.8997 49.01 94.2197 48.82L85.2197 34.23C85.1597 34.13 85.0497 34.07 84.9397 34.08C83.0597 34.08 81.2097 34.09 79.3797 34.1C79.1297 34.1 78.9797 34.37 79.0997 34.59V34.58Z" fill="#51A6E0"/> <path d="M76.1696 74.13C76.2196 73.34 76.2996 70.05 76.2696 65.52C76.2596 63.26 76.2396 60.68 76.2196 57.96C76.2196 57.28 76.2196 56.59 76.2196 55.89C76.2196 55.59 76.2596 55.09 76.0196 54.69C75.8096 54.3 75.4196 54 74.9796 53.88C74.8696 53.85 74.7596 53.84 74.6496 53.83H74.3796L73.8396 53.79L72.7596 53.75C72.0396 53.73 71.3196 53.72 70.5896 53.73C69.1396 53.73 67.6996 53.78 66.2796 53.88L65.2196 53.96C64.8696 54 64.3896 54.03 64.0096 54.44C63.6596 54.87 63.6896 55.33 63.6696 55.66C63.6596 56 63.6396 56.35 63.6296 56.69C63.5296 59.41 63.4996 61.97 63.4796 64.2C63.4396 68.67 63.4196 71.87 63.4096 72.56C63.3396 76.09 64.1396 77.05 64.2196 72.25C64.2196 71.58 64.2396 68.32 64.2596 63.78C64.2696 61.51 64.2996 58.92 64.3996 56.18C64.4196 55.85 64.4096 55.46 64.4596 55.2C64.5196 54.93 64.5996 54.85 64.8696 54.77C65.1296 54.7 65.5096 54.69 65.8596 54.65L66.9196 54.57C68.3396 54.48 69.7796 54.44 71.2296 54.44C71.9496 54.44 72.6696 54.44 73.3896 54.47L74.4596 54.51C74.8096 54.51 75.0196 54.59 75.2296 54.77C75.4196 54.95 75.5396 55.21 75.5396 55.47C75.5396 55.82 75.5396 56.17 75.5396 56.52C75.5396 57.22 75.5396 57.91 75.5496 58.59C75.5896 61.31 75.6196 63.86 75.6496 66.07C75.7096 70.5 75.6496 73.58 75.6496 74.03C75.6496 76.01 76.0596 75.97 76.1596 74.12L76.1696 74.13Z" fill="#121C2D"/> <path d="M137.771 40.78C136.871 40.14 135.021 39.81 133.731 39.97C133.701 39.8 133.591 39.62 133.371 39.43C133.071 39.16 132.641 39.03 132.391 38.7C132.201 38.46 132.141 38.14 132.081 37.84C131.731 36.04 131.381 34.23 131.381 32.4C131.381 31.25 131.591 29.97 132.521 29.29C132.891 29.02 133.341 28.87 133.751 28.66C135.491 27.73 136.251 25.51 135.951 23.56C135.651 21.61 134.501 19.89 133.221 18.39C131.701 16.62 129.751 14.95 127.421 14.84C125.811 14.76 124.271 15.45 122.801 16.11C122.161 16.4 121.511 16.7 120.961 17.13C119.971 17.9 119.331 19.07 119.011 20.28C118.701 21.5 118.681 22.78 118.761 24.03C118.961 27.25 119.751 30.43 121.081 33.37C121.581 34.47 122.241 35.61 123.371 36.03C123.761 36.17 124.211 36.24 124.461 36.57C124.591 36.75 124.641 36.98 124.681 37.19C124.821 37.99 124.731 38.97 124.881 39.79H124.831C124.831 39.79 123.931 40.23 123.931 40.24C123.501 40.27 121.951 40.48 121.081 40.77C118.681 41.56 117.761 44.66 116.131 46.6C119.561 49.38 123.931 51.06 128.701 51.06C134.031 51.06 138.871 48.96 142.451 45.55C140.751 43.42 139.961 42.33 137.771 40.77V40.78Z" fill="white"/> <path d="M131.86 26.75C131.95 26.71 132.39 26.23 132.93 25.89C133.46 25.54 134.07 25.33 134.14 25.3C134.32 25.24 134.14 24.44 133.84 24.55C133.76 24.58 133.06 24.87 132.49 25.33C131.9 25.78 131.47 26.37 131.46 26.43C131.42 26.56 131.76 26.8 131.86 26.75Z" fill="#0F1C2E"/> <path d="M132.63 40.44C132.68 40.08 132.33 37.44 132.06 34.87C131.78 32.29 132.21 29.76 132.27 29.47C132.41 28.7 131.65 28.32 131.46 29.41C131.44 29.56 131.32 30.31 131.25 31.36C131.18 32.41 131.21 33.77 131.37 35.09C131.71 37.73 132.11 40.27 132.12 40.48C132.22 40.92 132.62 40.87 132.63 40.45V40.44Z" fill="#0F1C2E"/> <path d="M131.01 28.4C130.86 28.52 130.5 28.86 130.16 29.47C129.81 30.07 129.5 30.93 129.23 31.9C128.95 32.85 128.63 33.96 127.91 34.82C127.22 35.67 125.96 36.02 124.79 35.93C123.6 35.83 122.54 35.19 121.9 34.26C121.23 33.34 120.84 32.29 120.5 31.36C119.85 29.53 119.75 28.12 119.72 27.84C119.65 27.08 119.46 26.6 119.25 26.56C119.06 26.52 118.82 26.97 118.93 28.06C118.97 28.36 119.1 29.87 119.84 31.81C120.2 32.76 120.64 33.89 121.46 34.91C122.26 35.96 123.65 36.66 125.04 36.66C125.73 36.67 126.43 36.55 127.06 36.28C127.71 36.03 128.26 35.54 128.63 35.01C129.38 33.94 129.64 32.77 129.91 31.83C130.16 30.89 130.45 30.12 130.74 29.62C131.03 29.11 131.3 28.86 131.36 28.8C131.64 28.51 131.76 28.32 131.7 28.21C131.65 28.12 131.38 28.12 131.03 28.4H131.01Z" fill="#0F1C2E"/> <path d="M125.321 40.69C125.351 40.55 125.231 39.56 125.151 38.58C125.081 37.59 125.001 36.6 125.001 36.49C124.971 36.18 124.161 36.19 124.201 36.6C124.211 36.71 124.331 37.72 124.451 38.72C124.591 39.72 124.781 40.7 124.811 40.77C124.891 40.93 125.291 40.86 125.321 40.7V40.69Z" fill="#0F1C2E"/> <path d="M129.29 24.25C129.27 24.12 128.62 23.55 127.82 23.42C127.04 23.24 126.26 23.4 126.17 23.42C125.92 23.49 126.13 24.27 126.38 24.2C126.44 24.18 127.09 24.02 127.73 24.12C128.39 24.19 128.89 24.58 128.92 24.61C129.03 24.65 129.34 24.38 129.29 24.25Z" fill="#0F1C2E"/> <path d="M120.01 23.84C120.06 23.84 120.55 23.68 121.07 23.72C121.61 23.73 121.97 23.96 121.99 23.99C122.05 24.04 122.73 23.55 122.46 23.33C122.42 23.3 122.24 23.18 121.97 23.1C121.7 23.02 121.37 22.99 121.05 23.01C120.4 23.03 119.8 23.33 119.76 23.4C119.68 23.51 119.94 23.83 120.02 23.85L120.01 23.84Z" fill="#0F1C2E"/> <path d="M123.12 32.15C123.21 32.25 124.21 32.67 125.23 32.39C126.27 32.15 126.96 31.29 127.01 31.2C127.2 30.92 126.52 30.48 126.34 30.74C126.3 30.81 125.79 31.5 124.99 31.72C124.2 31.98 123.37 31.7 123.32 31.69C123.17 31.69 122.99 32.05 123.11 32.16L123.12 32.15Z" fill="#0F1C2E"/> <path d="M118.14 26.02C117.54 26.11 116.9 25.99 116.53 25.62C116.12 25.2 116.02 24.52 116.28 24C115.51 24.22 114.92 23.24 114.95 22.45C114.98 21.66 115.31 20.84 115.06 20.09C114.97 19.8 114.79 19.54 114.67 19.26C114.37 18.55 114.44 17.7 114.85 17.05C114.1 16.35 113.95 15.11 114.51 14.25C114.6 14.11 114.72 13.97 114.75 13.8C114.8 13.6 114.73 13.4 114.68 13.2C114.4 11.99 115.03 10.66 116.09 10.04C116.35 9.89001 116.49 9.60001 116.45 9.30001C116.29 8.35001 116.62 7.33001 117.31 6.66001C118 5.99001 119 5.73001 119.92 5.90001C120.26 5.96001 120.59 5.81001 120.81 5.54001C121.47 4.74001 122.72 4.43001 123.64 4.94001C123.79 5.03001 123.95 5.13001 124.13 5.13001C124.36 5.13001 124.54 4.95001 124.72 4.81001C125.67 4.10001 127.25 4.60001 127.62 5.72001C127.71 5.98001 127.78 6.31001 128.04 6.39001C128.18 6.43001 128.33 6.38001 128.47 6.34001C130.04 5.87001 131.87 6.85001 132.44 8.37001C132.53 8.61001 132.77 8.78001 133.03 8.78001C134.67 8.74001 136.28 10.02 136.6 11.63C136.65 11.89 136.87 12.09 137.13 12.12C138.17 12.23 139.15 12.8 139.74 13.67C140.33 14.54 140.51 15.69 140.21 16.7C140.14 16.95 140.2 17.22 140.4 17.39C141.18 18.06 141.93 18.82 142.19 19.8C142.43 20.73 142.01 21.88 141.2 22.28C140.93 22.41 140.82 22.75 140.91 23.04C141.46 24.7 140.75 26.75 139.21 27.61C139.01 27.72 138.78 27.83 138.65 28.02C138.48 28.27 138.51 28.61 138.49 28.91C138.41 30.05 137.35 31.04 136.21 31.03C136.19 32.16 134.84 32.94 133.76 32.64C132.43 32.27 131.63 30.74 131.67 29.41C131.68 29.05 131.84 28.69 132.13 28.48C132.45 28.24 132.8 28.28 133.17 28.24C135.3 27.95 136.33 23.76 134.24 22.82C133.27 22.39 131.99 22.52 131.27 23.35C130.66 24.05 130.9 24.07 130.63 24.57C130.52 24.79 130.2 24.78 130.1 24.56C129.79 23.86 129.98 22.95 129.9 22.15C129.75 20.63 128.54 19.38 127.15 18.76C125.76 18.14 124.2 18.01 122.68 17.89C122.32 17.86 121.95 17.84 121.61 17.96C121.26 18.09 120.99 18.37 120.74 18.65C120.08 19.43 119.99 20.38 119.89 21.35C119.81 22.14 119.73 22.92 119.65 23.71C119.6 24.22 119.66 24.82 119.41 25.29C119.15 25.77 118.63 25.98 118.11 26.05L118.14 26.02Z" fill="white"/> <path d="M115.9 24.39C115.9 24.39 115.93 24.29 115.93 24.24C115.86 24.24 115.88 24.27 115.71 24.22C115.51 24.15 115.3 23.99 115.14 23.8C114.82 23.42 114.6 22.77 114.71 22.08C114.77 21.42 115.04 20.68 114.73 20C114.56 19.66 114.26 19.17 114.22 18.6C114.19 18.32 114.2 18.03 114.27 17.74C114.32 17.47 114.5 17.07 114.51 17.08L114.47 17.04L114.38 16.93C114.3 16.82 114.22 16.69 114.16 16.56C114.03 16.3 113.94 16.01 113.91 15.71C113.83 15.12 113.98 14.42 114.37 13.91C114.45 13.79 114.48 13.73 114.48 13.65C114.48 13.57 114.46 13.44 114.42 13.29C114.34 12.96 114.31 12.6 114.35 12.25C114.42 11.55 114.74 10.85 115.25 10.3C115.38 10.16 115.52 10.04 115.68 9.92001C115.75 9.86001 115.84 9.81001 115.92 9.76001C116 9.71001 116.02 9.70001 116.06 9.65001C116.13 9.57001 116.17 9.48001 116.17 9.38001C116.17 9.35001 116.15 9.25001 116.14 9.14001C116.14 9.04001 116.12 8.94001 116.12 8.84001C116.11 8.04001 116.38 7.21001 116.94 6.57001C117.51 5.92001 118.36 5.54001 119.24 5.50001C119.46 5.49001 119.68 5.50001 119.91 5.54001C120.12 5.58001 120.18 5.57001 120.32 5.51001C120.46 5.44001 120.51 5.39001 120.68 5.19001C120.84 5.02001 121.03 4.86001 121.23 4.74001C122.01 4.24001 123.16 4.18001 123.97 4.71001C124.15 4.79001 124.12 4.79001 124.25 4.73001C124.36 4.66001 124.57 4.47001 124.81 4.35001C125.29 4.11001 125.83 4.07001 126.33 4.20001C126.83 4.32001 127.3 4.59001 127.63 5.02001C127.8 5.22001 127.92 5.51001 127.98 5.73001C128.05 5.96001 128.12 6.06001 128.14 6.04001C128.11 6.07001 128.38 5.98001 128.64 5.92001C128.89 5.87001 129.15 5.85001 129.41 5.85001C129.92 5.87001 130.43 6.00001 130.89 6.22001C131.35 6.44001 131.77 6.75001 132.12 7.14001C132.29 7.34001 132.45 7.55001 132.57 7.78001C132.64 7.89001 132.69 8.02001 132.74 8.14001C132.8 8.28001 132.79 8.26001 132.84 8.32001C132.94 8.40001 132.95 8.39001 133.29 8.40001C133.56 8.41001 133.82 8.46001 134.07 8.53001C134.58 8.67001 135.05 8.92001 135.47 9.24001C135.89 9.56001 136.25 9.96001 136.52 10.42C136.66 10.65 136.76 10.9 136.85 11.15C136.89 11.27 136.92 11.42 136.95 11.53C136.96 11.58 136.99 11.63 137.03 11.66C137.07 11.7 137.12 11.72 137.16 11.72C137.27 11.73 137.42 11.75 137.55 11.78C137.81 11.83 138.07 11.92 138.32 12.02C138.81 12.23 139.27 12.54 139.65 12.93C140.41 13.72 140.79 14.84 140.72 15.92C140.7 16.19 140.66 16.46 140.58 16.73C140.53 16.89 140.57 16.99 140.64 17.06C140.99 17.36 141.4 17.73 141.73 18.13C142.07 18.54 142.36 19.01 142.52 19.55C142.69 20.1 142.66 20.7 142.48 21.24C142.29 21.77 141.94 22.29 141.38 22.57C141.31 22.6 141.25 22.7 141.27 22.82C141.27 22.84 141.32 22.99 141.35 23.13C141.39 23.26 141.41 23.4 141.43 23.53C141.6 24.6 141.34 25.71 140.76 26.61C140.47 27.06 140.09 27.46 139.64 27.76C139.41 27.92 139.16 28.03 139.05 28.12C138.95 28.21 138.92 28.28 138.9 28.5C138.89 28.69 138.9 29 138.83 29.28C138.77 29.56 138.66 29.82 138.51 30.06C138.21 30.53 137.79 30.92 137.28 31.14C137.15 31.2 137.02 31.25 136.89 31.28C136.82 31.3 136.76 31.32 136.69 31.33L136.59 31.35C136.59 31.35 136.57 31.35 136.58 31.35C136.58 31.35 136.58 31.35 136.57 31.4C136.56 31.47 136.53 31.54 136.5 31.61C136.28 32.17 135.83 32.57 135.33 32.8C134.83 33.03 134.26 33.1 133.71 32.96C133.18 32.81 132.72 32.52 132.37 32.14C131.66 31.38 131.32 30.38 131.32 29.39C131.32 28.83 131.62 28.22 132.21 27.96C132.5 27.84 132.77 27.84 132.98 27.82C133.19 27.81 133.33 27.76 133.5 27.7C134.15 27.43 134.61 26.72 134.84 26.01C135.06 25.29 135.11 24.49 134.83 23.87C134.58 23.25 133.95 22.96 133.26 22.92C132.59 22.88 131.95 23.13 131.56 23.6C131.45 23.73 131.35 23.86 131.28 23.97C131.21 24.09 131.24 24.11 131.09 24.53C130.96 24.87 130.74 25.04 130.45 25.06C130.15 25.08 129.9 24.92 129.77 24.65C129.73 24.52 129.67 24.4 129.64 24.26C129.61 24.13 129.61 24.09 129.59 24C129.57 23.84 129.56 23.69 129.55 23.55C129.54 23.26 129.55 22.98 129.55 22.72C129.55 22.2 129.51 21.76 129.34 21.34C129.01 20.5 128.35 19.85 127.66 19.41C126.24 18.53 124.66 18.41 123.39 18.28C122.74 18.24 122.12 18.14 121.79 18.28C121.46 18.4 121.13 18.78 120.94 19.06C120.55 19.65 120.49 20.2 120.44 20.49C120.33 21.43 120.22 22.29 120.13 23.04C120.08 23.43 120.02 23.77 120 24.08C119.97 24.41 119.94 24.75 119.83 25.05C119.6 25.7 119.04 25.94 118.74 25.99C118.41 26.06 118.22 26.02 118.17 25.99C118.12 25.94 118.22 25.89 118.44 25.78C118.65 25.67 119.03 25.51 119.21 25.1C119.3 24.9 119.33 24.62 119.33 24.26C119.32 23.9 119.35 23.44 119.39 22.99C119.43 22.53 119.47 22.03 119.52 21.48C119.58 20.93 119.6 20.32 119.8 19.63C119.87 19.42 119.95 19.07 120.3 18.56C120.49 18.31 120.68 18.05 121.07 17.76C121.26 17.62 121.53 17.49 121.82 17.44C122.11 17.39 122.4 17.4 122.68 17.42C123.76 17.53 125.25 17.51 127.12 18.23C128.04 18.61 129.03 19.25 129.74 20.34C130.08 20.88 130.34 21.56 130.36 22.29C130.38 22.64 130.36 22.98 130.36 23.31C130.36 23.47 130.36 23.64 130.38 23.79C130.38 23.87 130.4 23.94 130.41 24.02V24.04H130.42L130.43 23.99C130.45 23.92 130.47 23.83 130.51 23.75C130.66 23.41 130.85 23.2 131.07 22.96C131.3 22.71 131.59 22.51 131.92 22.37C132.57 22.09 133.34 22.04 134.08 22.27C134.44 22.38 134.85 22.59 135.13 22.92C135.42 23.24 135.62 23.64 135.71 24.06C135.9 24.89 135.78 25.76 135.45 26.58C135.29 26.99 135.05 27.38 134.73 27.73C134.42 28.08 133.99 28.39 133.48 28.51C132.94 28.65 132.55 28.56 132.37 28.75C132.14 28.95 132.04 29.22 132.09 29.65C132.14 30.46 132.51 31.3 133.15 31.84C133.47 32.1 133.86 32.28 134.24 32.29C134.63 32.3 135.05 32.16 135.37 31.92C135.53 31.8 135.66 31.64 135.75 31.47C135.79 31.39 135.83 31.3 135.85 31.21C135.88 31.11 135.88 30.97 135.9 30.85L135.92 30.67C135.93 30.61 136.03 30.65 136.08 30.63L136.45 30.61C136.57 30.59 136.57 30.59 136.64 30.58C136.74 30.56 136.84 30.52 136.94 30.49C137.14 30.41 137.32 30.29 137.49 30.15C137.82 29.87 138.07 29.48 138.15 29.06C138.19 28.86 138.17 28.63 138.21 28.3C138.23 28.14 138.29 27.95 138.4 27.78C138.52 27.61 138.67 27.5 138.8 27.42C139.73 26.97 140.33 26.2 140.62 25.24C140.76 24.77 140.8 24.27 140.75 23.79C140.72 23.53 140.67 23.35 140.58 23.04C140.48 22.64 140.64 22.15 141.06 21.94C141.83 21.55 142.16 20.37 141.76 19.53C141.57 19.08 141.27 18.67 140.91 18.29C140.73 18.1 140.54 17.92 140.33 17.74C140.26 17.67 140.07 17.54 139.97 17.33C139.87 17.14 139.85 16.92 139.88 16.72C140.19 15.66 140.03 14.65 139.47 13.81C139.19 13.41 138.81 13.07 138.37 12.83C138.15 12.71 137.92 12.61 137.68 12.54C137.56 12.51 137.44 12.48 137.32 12.46L137.14 12.43C137.06 12.43 136.93 12.39 136.84 12.35C136.64 12.26 136.49 12.11 136.39 11.92C136.34 11.84 136.31 11.7 136.29 11.64L136.25 11.46C136.18 11.23 136.09 11 135.97 10.79C135.73 10.36 135.39 9.99001 134.99 9.71001C134.59 9.42001 134.13 9.23001 133.66 9.13001C133.54 9.11001 133.42 9.09001 133.3 9.09001C133.18 9.08001 133.09 9.10001 132.85 9.06001C132.65 9.01001 132.47 8.90001 132.34 8.74001C132.27 8.66001 132.22 8.58001 132.18 8.48001L132.11 8.31001C131.73 7.45001 130.89 6.81001 129.99 6.59001C129.54 6.48001 129.07 6.49001 128.64 6.61001C128.53 6.64001 128.39 6.70001 128.15 6.69001C127.92 6.68001 127.7 6.53001 127.6 6.36001C127.41 6.04001 127.39 5.79001 127.3 5.63001C126.94 4.90001 125.88 4.56001 125.18 4.91001C125 4.98001 124.89 5.12001 124.61 5.29001C124.48 5.37001 124.27 5.44001 124.06 5.41001C123.86 5.38001 123.73 5.30001 123.62 5.24001C123.26 5.02001 122.87 4.95001 122.47 5.00001C122.07 5.05001 121.69 5.20001 121.38 5.44001C121.21 5.56001 121.15 5.68001 120.91 5.90001C120.7 6.08001 120.4 6.20001 120.1 6.20001C119.93 6.20001 119.84 6.16001 119.75 6.16001C119.65 6.15001 119.56 6.14001 119.46 6.14001C119.27 6.14001 119.07 6.16001 118.89 6.19001C118.52 6.26001 118.16 6.41001 117.86 6.62001C117.26 7.03001 116.89 7.71001 116.79 8.39001C116.77 8.56001 116.75 8.73001 116.76 8.90001C116.76 9.08001 116.81 9.19001 116.8 9.49001C116.78 9.75001 116.65 9.99001 116.46 10.15C116.23 10.33 116.15 10.34 116.01 10.46C115.52 10.84 115.19 11.38 115.04 11.93C114.97 12.2 114.94 12.47 114.96 12.73C114.96 13 115.06 13.2 115.1 13.56C115.12 13.74 115.06 13.97 114.97 14.1C114.89 14.24 114.81 14.34 114.76 14.43C114.65 14.62 114.58 14.82 114.54 15.01C114.46 15.41 114.52 15.79 114.63 16.1C114.69 16.25 114.75 16.39 114.84 16.51C114.89 16.59 114.9 16.59 114.99 16.7C115.08 16.79 115.17 16.88 115.25 16.97C115.16 17.11 115.08 17.25 115.01 17.38C114.98 17.46 114.94 17.53 114.92 17.61C114.87 17.77 114.84 17.92 114.82 18.08C114.79 18.39 114.82 18.69 114.91 18.96C114.99 19.22 115.15 19.46 115.28 19.75C115.41 20.04 115.46 20.37 115.47 20.64C115.42 21.75 115.13 22.44 115.33 22.91C115.48 23.4 115.76 23.63 115.93 23.69L116 23.71C116.06 23.71 116.11 23.71 116.16 23.71C116.25 23.71 116.36 23.69 116.44 23.67C116.59 23.64 116.69 23.62 116.76 23.61C116.6 24 116.57 24.06 116.55 24.11C116.5 24.23 116.47 24.34 116.45 24.44C116.45 24.49 116.44 24.55 116.44 24.6C116.44 24.7 116.45 24.8 116.47 24.9C116.51 25.09 116.6 25.26 116.7 25.38C116.9 25.63 117.19 25.75 117.42 25.81C117.9 25.93 118.17 25.91 118.18 25.98C118.19 26.03 117.94 26.17 117.4 26.14C117.13 26.11 116.77 26.05 116.42 25.74C116.1 25.45 115.87 24.9 115.94 24.36L115.9 24.39Z" fill="#121C2D"/> <path d="M127.36 26.31C127.675 26.31 127.93 26.0548 127.93 25.74C127.93 25.4252 127.675 25.17 127.36 25.17C127.045 25.17 126.79 25.4252 126.79 25.74C126.79 26.0548 127.045 26.31 127.36 26.31Z" fill="#0F1C2E"/> <path d="M121.111 25.79C121.392 25.79 121.621 25.5617 121.621 25.28C121.621 24.9984 121.392 24.77 121.111 24.77C120.829 24.77 120.601 24.9984 120.601 25.28C120.601 25.5617 120.829 25.79 121.111 25.79Z" fill="#0F1C2E"/> <path d="M122.02 27.68C121.99 27.77 122.02 28.45 122.71 28.85C123.05 29.04 123.52 29.06 123.9 28.88C124 28.84 124.09 28.78 124.17 28.72C124.21 28.69 124.25 28.66 124.29 28.62C124.32 28.59 124.3 28.61 124.31 28.6C124.31 28.59 124.33 28.6 124.33 28.6C124.31 28.59 124.39 28.64 124.44 28.66C124.5 28.69 124.56 28.71 124.62 28.72C124.74 28.75 124.86 28.76 124.98 28.76C125.1 28.76 125.25 28.73 125.4 28.62C125.55 28.51 125.64 28.33 125.65 28.2C125.69 27.93 125.59 27.74 125.5 27.62C125.42 27.51 125.35 27.47 125.33 27.44C124.94 27.18 124.64 27.96 124.83 28.08C124.83 28.08 124.84 28.09 124.85 28.1C124.87 28.09 124.81 28.13 124.89 28.07C124.89 28.07 124.89 28.07 124.88 28.07H124.86C124.86 28.07 124.88 28.07 124.92 28.07C124.96 28.07 125.02 28.09 125.01 28.09C125 28.08 124.99 28.07 124.97 28.02C124.97 28 124.95 27.97 124.94 27.94C124.94 27.94 124.87 27.94 124.82 27.94C124.8 27.94 124.77 27.93 124.75 27.92C124.71 27.9 124.73 27.92 124.62 27.85C124.44 27.7 124.19 27.68 123.99 27.82C123.94 27.85 123.89 27.9 123.85 27.96C123.83 27.99 123.81 28.01 123.78 28.04L123.75 28.07C123.75 28.07 123.67 28.14 123.63 28.17C123.45 28.29 123.2 28.32 123.02 28.25C122.83 28.18 122.68 28.01 122.61 27.88C122.53 27.74 122.52 27.64 122.51 27.62C122.46 27.51 122.05 27.43 122 27.65L122.02 27.68Z" fill="#0F1C2E"/> <path d="M132.9 39.53C133 39.59 133.27 39.72 133.56 40.02C133.89 40.34 134.07 40.73 133.64 41.19C133.21 41.61 132.47 42.03 131.72 42.29C130.94 42.57 130.07 42.7 129.18 42.77C127.44 42.88 125.56 42.66 124.45 42.08C123.87 41.78 123.76 41.38 123.81 41.07C123.83 40.73 124 40.66 124.07 40.58C124.4 40.33 124.7 40.03 124.64 39.83C124.61 39.73 124.51 39.66 124.32 39.66C124.13 39.66 123.83 39.71 123.46 40.04C123.41 40.09 123.31 40.18 123.2 40.37C123.07 40.56 123.04 40.82 123 41.1C122.98 41.4 123.06 41.78 123.29 42.11C123.53 42.41 123.85 42.68 124.21 42.84C124.93 43.2 125.78 43.36 126.66 43.46C127.54 43.56 128.5 43.58 129.44 43.48C131.31 43.31 133.19 42.68 134.24 41.45C134.5 41.12 134.58 40.62 134.43 40.26C134.28 39.9 134.06 39.71 133.89 39.55C133.52 39.23 133.22 39.12 133.15 39.09C132.47 38.89 132.46 39.33 132.92 39.55L132.9 39.53Z" fill="#0F1C2E"/> <path d="M118.831 17.02C119.151 16.73 119.701 16.45 120.391 16.24H120.441C122.611 15.59 124.641 15.71 125.961 15.92C127.661 16.21 129.281 16.83 130.641 17.69C131.351 18.12 132.061 18.7 132.811 19.46C132.961 19.62 133.141 19.82 133.301 20.06C133.381 20.18 133.451 20.31 133.511 20.44C133.541 20.51 133.571 20.58 133.601 20.65C133.641 20.78 133.661 20.89 133.661 21.01C133.641 21.38 133.531 21.58 133.441 21.76C133.421 21.81 133.391 21.85 133.371 21.91C133.181 22.28 133.161 22.36 133.161 22.36C133.131 22.9 133.111 23.46 133.101 24.04C133.081 25.27 133.051 26.54 132.801 27.73C132.481 29.39 131.601 30.97 130.371 32.06C129.111 33.23 127.811 33.66 127.141 33.81C126.391 33.97 125.851 33.95 125.591 33.93C125.521 34.19 125.311 34.4 125.021 34.52C124.861 34.58 124.691 34.62 124.511 34.62C124.371 34.62 124.221 34.6 124.081 34.56C123.761 34.47 123.481 34.29 123.291 34.04C123.101 33.79 123.041 33.5 123.111 33.24C123.181 32.97 123.391 32.76 123.681 32.64C123.961 32.53 124.291 32.51 124.621 32.6C124.891 32.67 125.121 32.81 125.301 33C125.351 33 125.401 33 125.451 33H125.541C125.811 33 126.361 33.02 127.101 32.8C128.061 32.54 129.071 31.9 129.891 31.06C130.901 30.04 131.561 28.65 131.771 27.13C131.901 26.25 131.931 25.35 131.931 24.58L131.951 23.22L131.971 22.53C131.971 22.53 131.971 22.46 131.971 22.43C131.971 22.35 131.971 22.26 132.011 22.08C132.061 21.9 132.121 21.76 132.171 21.65C132.201 21.58 132.241 21.51 132.271 21.44C132.341 21.3 132.401 21.18 132.431 21.08C132.441 21.05 132.451 21.02 132.451 21.02C132.441 20.99 132.421 20.95 132.401 20.91C132.271 20.65 132.021 20.36 131.661 20.04C131.021 19.4 130.271 18.91 129.681 18.55C128.351 17.79 126.891 17.3 125.461 17.12C123.041 16.8 121.261 17.31 120.681 17.48C120.611 17.5 120.561 17.51 120.531 17.52C118.831 18.08 118.601 17.79 118.521 17.69C118.431 17.57 118.401 17.35 118.791 17.01L118.831 17.02Z" fill="#121C2D"/> <path d="M114.741 30.01C114.671 28.25 114.691 26.18 114.731 24.08C114.801 19.96 111.511 16.58 107.391 16.52C104.861 16.49 102.191 16.46 99.6805 16.46C95.9505 16.46 92.9205 19.49 92.9405 23.22C92.9405 23.27 92.9405 23.31 92.9405 23.36C92.9605 27.16 96.0505 30.24 99.8505 30.24C105.111 30.24 111.211 30.24 114.731 30.24" fill="white"/> <path d="M113.11 29.98C112.19 29.98 108.39 29.95 103.14 29.92C102.48 29.92 101.81 29.92 101.11 29.92C100.41 29.92 99.6902 29.94 99.0102 29.85C97.6202 29.68 96.2402 29.01 95.1802 27.94C94.1202 26.87 93.4302 25.39 93.3202 23.83C93.1802 22.26 93.6102 20.65 94.5702 19.39C95.5102 18.12 96.9402 17.24 98.4602 16.95C99.2102 16.79 100 16.85 100.82 16.85C101.63 16.85 102.42 16.87 103.21 16.87C104.77 16.89 106.33 16.88 107.74 16.93C109.12 17 110.39 17.52 111.38 18.23C112.37 18.96 113.12 19.86 113.57 20.78C114.03 21.7 114.24 22.62 114.3 23.4C114.34 25 114.32 26.19 114.33 26.57C114.33 30.7 115.15 31.71 115.14 26.19C115.14 26 115.14 25.62 115.14 25.07C115.13 24.54 115.17 23.82 115.06 22.91C114.85 21.17 113.81 18.75 111.4 17.29C110.24 16.55 108.74 16.12 107.21 16.13C105.73 16.13 104.19 16.11 102.59 16.1C101.79 16.1 100.99 16.1 100.17 16.09C99.3702 16.07 98.4502 16.12 97.6202 16.39C95.9402 16.9 94.4602 18.06 93.5702 19.59C92.6702 21.12 92.4002 22.96 92.7302 24.66C93.0502 26.37 94.0002 27.9 95.2802 28.93C96.5702 29.97 98.1602 30.51 99.6702 30.53C101.13 30.53 102.51 30.53 103.79 30.53C108.92 30.51 112.5 30.49 113.02 30.49C115.32 30.44 115.25 30.03 113.11 29.97V29.98Z" fill="#121C2D"/> <path d="M108.911 25.32C109.734 25.32 110.401 24.6529 110.401 23.83C110.401 23.0071 109.734 22.34 108.911 22.34C108.088 22.34 107.421 23.0071 107.421 23.83C107.421 24.6529 108.088 25.32 108.911 25.32Z" fill="#EE2F46"/> <path d="M103.98 25.32C104.803 25.32 105.47 24.6529 105.47 23.83C105.47 23.0071 104.803 22.34 103.98 22.34C103.157 22.34 102.49 23.0071 102.49 23.83C102.49 24.6529 103.157 25.32 103.98 25.32Z" fill="#EE2F46"/> <path d="M99.0506 25.32C99.8735 25.32 100.541 24.6529 100.541 23.83C100.541 23.0071 99.8735 22.34 99.0506 22.34C98.2276 22.34 97.5605 23.0071 97.5605 23.83C97.5605 24.6529 98.2276 25.32 99.0506 25.32Z" fill="#EE2F46"/> <path d="M134.26 51.22C133.92 49.86 132.51 47.17 132.51 47.17C132.39 47.34 131.58 48.69 131.34 49.82C131.34 49.86 131.33 49.9 131.34 49.93C131.35 49.96 131.38 49.98 131.41 50C131.63 50.15 131.86 50.28 132.08 50.42C132.78 50.89 133.34 51.56 134.09 51.95C134.16 51.99 134.26 52.02 134.31 51.95C134.33 51.92 134.34 51.88 134.34 51.84C134.34 51.62 134.3 51.41 134.24 51.19L134.26 51.22Z" fill="white"/> <path d="M134.19 51.63C131.74 48.54 128.24 48.92 126.05 50.19C121.55 52.8 121.04 58.56 126.03 61.18C127.42 61.91 129 62.31 130.57 62.22C131.71 62.16 132.84 61.84 133.97 62C134.84 62.12 135.65 62.51 136.46 62.86C139.83 64.32 143.79 65.15 147.13 63.62C148.74 62.88 150.15 61.62 151.9 61.34C153.18 61.13 154.48 61.47 155.78 61.51C158.24 61.57 160.73 60.42 162.18 58.43C163.64 56.44 163.98 53.67 162.96 51.43C161.94 49.19 159.56 47.61 157.1 47.64C155.59 47.66 153.98 48.22 152.63 47.55C151.7 47.09 151.13 46.16 150.45 45.38C146.12 40.43 138 39.62 132.4 47.61" fill="white"/> <path d="M134.34 45.64C134.59 45.35 135.1 44.9 135.83 44.29C136.2 44 136.66 43.72 137.15 43.38C137.69 43.12 138.24 42.76 138.93 42.55C140.25 42.05 141.92 41.75 143.73 42C144.64 42.09 145.56 42.4 146.48 42.77C147.37 43.22 148.3 43.72 149.09 44.46C149.52 44.79 149.87 45.22 150.26 45.62C150.62 46.04 150.96 46.52 151.4 46.97C151.82 47.42 152.39 47.84 153.04 48.02C153.69 48.2 154.36 48.19 154.99 48.14C155.63 48.08 156.25 47.98 156.86 47.95C157.46 47.93 158.07 47.99 158.66 48.15C159.84 48.48 160.95 49.18 161.77 50.15C163.46 52.08 163.65 55.15 162.35 57.47C161.07 59.81 158.31 61.24 155.62 61.1C154.28 61.04 152.8 60.64 151.3 61.06C149.83 61.47 148.68 62.37 147.49 62.99C145.12 64.29 142.28 64.21 139.78 63.57C138.51 63.25 137.31 62.79 136.14 62.27C135.55 62.01 134.92 61.75 134.25 61.63C133.57 61.5 132.89 61.55 132.27 61.62C131.02 61.8 129.9 61.92 128.79 61.7C127.69 61.5 126.65 61.11 125.77 60.54C124.88 60 124.14 59.3 123.64 58.49C123.15 57.68 122.91 56.78 122.9 55.93C122.9 55.07 123.09 54.27 123.4 53.56C123.75 52.88 124.15 52.26 124.63 51.8C126.57 49.86 128.57 49.68 129.14 49.66C130.78 49.57 132.05 50.14 132.83 50.67C133.63 51.2 134.04 51.63 134.18 51.61C134.24 51.61 134.22 51.51 134.11 51.3C134 51.09 133.77 50.78 133.39 50.39C132.99 50.02 132.42 49.57 131.59 49.24C130.76 48.91 129.67 48.72 128.43 48.91C128.09 48.97 127.4 49.08 126.51 49.49C125.62 49.9 124.53 50.58 123.57 51.77C123.1 52.37 122.67 53.09 122.39 53.93C122.13 54.78 122.01 55.74 122.17 56.74C122.32 57.73 122.75 58.74 123.46 59.59C124.16 60.44 125.1 61.11 126.13 61.64C127.17 62.14 128.35 62.49 129.59 62.57C130.85 62.68 132.1 62.33 133.27 62.31C134.44 62.26 135.54 62.86 136.77 63.36C138 63.86 139.29 64.28 140.65 64.53C142.01 64.78 143.44 64.86 144.85 64.63C146.27 64.44 147.65 63.8 148.84 63.05C150.04 62.32 151.24 61.6 152.57 61.59C153.9 61.54 155.35 61.97 156.85 61.76C159.8 61.45 162.57 59.41 163.47 56.57C163.94 55.18 163.99 53.67 163.62 52.28C163.26 50.88 162.4 49.64 161.31 48.77C160.22 47.9 158.88 47.35 157.52 47.27C156.15 47.2 154.91 47.59 153.76 47.48C152.59 47.42 151.81 46.56 151.1 45.63C150.36 44.7 149.5 43.9 148.59 43.26C146.75 41.99 144.7 41.33 142.84 41.29C140.97 41.22 139.35 41.68 138.08 42.23C136.83 42.84 135.88 43.48 135.25 44.04C134.93 44.32 134.67 44.55 134.46 44.72C134.27 44.91 134.14 45.06 134.06 45.14C133.73 45.51 133.43 45.82 133.21 46.11C133 46.41 132.83 46.66 132.7 46.87C132.44 47.28 132.34 47.5 132.39 47.54C132.44 47.57 132.63 47.42 132.94 47.09C133.26 46.75 133.68 46.23 134.33 45.6L134.34 45.64Z" fill="#121C2D"/> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> Digital marketplace</h4> <div class="card-description copy-small"> <p>Connect customers to the parties that best meet their needs for eCommerce, recruiting, and more through conversational messaging.</p> </div> </div> </div> </div> <div class="grid-container-column"> <!-- Card icon option --> <div class="card-icon vertical center"> <div class="card-icon__overlay" target="_self"></div> <header class="card-icon-header vertical center"> <div class="svg-icon "> <span class="illo_use-cases_relationship-management_conversations-api circle medium circle"> <svg width="190" height="80" viewBox="0 0 190 80" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M47.9498 19.75C43.8698 25.4 41.4498 32.31 41.2998 39.22C41.1998 44 41.9498 48.81 43.5798 53.31C46.1898 60.49 51.3698 66.46 58.2898 69.76C64.5898 72.77 71.8498 73.46 78.7498 72.39C89.6098 70.7 100.07 64.21 104.66 54.22C110.64 41.2 106.46 24.35 96.1098 15.23C86.9898 7.18999 72.2598 4.85 60.7098 9.52C55.5798 11.59 51.1698 15.28 47.9498 19.75Z" fill="#EEF7FF"/> <path d="M133.93 18.9C131.31 22.54 129.75 26.98 129.65 31.41C129.58 34.48 130.07 37.58 131.12 40.47C132.8 45.08 136.13 48.92 140.57 51.05C144.62 52.98 149.29 53.43 153.72 52.74C160.7 51.66 167.43 47.48 170.38 41.06C174.22 32.69 171.54 21.86 164.88 16C159.01 10.83 149.55 9.33001 142.13 12.33C138.83 13.66 136 16.03 133.93 18.91V18.9Z" fill="#FBEDE3"/> <path d="M156.001 61.08C155.721 59.99 154.601 57.82 154.601 57.82C154.501 57.96 153.851 59.04 153.661 59.96C153.661 59.99 153.651 60.02 153.661 60.05C153.671 60.08 153.701 60.09 153.721 60.11C153.901 60.23 154.081 60.33 154.261 60.45C154.821 60.83 155.281 61.37 155.881 61.68C155.941 61.71 156.011 61.73 156.061 61.68C156.081 61.66 156.081 61.62 156.081 61.59C156.081 61.41 156.051 61.24 156.001 61.07V61.08Z" fill="white"/> <path d="M155.95 61.41C153.98 58.93 151.17 59.23 149.4 60.25C145.78 62.35 145.37 66.98 149.38 69.09C150.5 69.68 151.77 70 153.03 69.93C153.94 69.88 154.86 69.63 155.76 69.75C156.46 69.85 157.11 70.16 157.76 70.44C160.47 71.62 163.65 72.28 166.34 71.05C167.63 70.46 168.77 69.44 170.17 69.21C171.2 69.04 172.25 69.32 173.29 69.35C175.27 69.4 177.27 68.47 178.44 66.87C179.61 65.27 179.89 63.04 179.07 61.24C178.25 59.44 176.33 58.17 174.35 58.19C173.14 58.21 171.84 58.65 170.75 58.11C170 57.74 169.54 56.99 169 56.36C165.52 52.38 158.99 51.72 154.48 58.15" fill="white"/> <path d="M156.1 56.62C156.3 56.39 156.71 56.03 157.29 55.54C157.59 55.31 157.95 55.08 158.35 54.82C158.78 54.61 159.23 54.33 159.77 54.16C160.83 53.76 162.16 53.52 163.6 53.72C164.33 53.8 165.06 54.04 165.8 54.34C166.51 54.7 167.25 55.1 167.89 55.69C168.23 55.95 168.51 56.3 168.82 56.62C169.11 56.96 169.38 57.34 169.73 57.71C170.07 58.08 170.54 58.42 171.08 58.57C171.61 58.72 172.16 58.71 172.67 58.67C173.7 58.56 174.65 58.39 175.6 58.68C176.54 58.94 177.42 59.5 178.07 60.27C179.41 61.8 179.56 64.24 178.53 66.08C177.52 67.93 175.32 69.08 173.18 68.96C172.11 68.92 170.91 68.58 169.68 68.93C168.48 69.26 167.55 69.99 166.6 70.49C164.71 71.52 162.46 71.46 160.45 70.95C159.43 70.69 158.47 70.33 157.53 69.9C157.05 69.69 156.55 69.48 155.99 69.38C155.43 69.28 154.88 69.31 154.37 69.37C153.36 69.51 152.48 69.61 151.59 69.44C150.72 69.28 149.88 68.97 149.19 68.51C148.48 68.08 147.89 67.52 147.5 66.89C147.11 66.25 146.93 65.54 146.92 64.87C146.9 63.5 147.56 62.35 148.3 61.61C149.85 60.07 151.42 59.93 151.88 59.91C153.18 59.84 154.18 60.28 154.81 60.69C155.46 61.1 155.8 61.43 155.93 61.41C156.03 61.41 155.93 61.03 155.32 60.38C155 60.08 154.54 59.7 153.86 59.43C153.19 59.16 152.29 59 151.28 59.16C150.76 59.25 148.93 59.55 147.32 61.49C146.94 61.98 146.59 62.57 146.36 63.26C146.15 63.95 146.05 64.74 146.18 65.56C146.31 66.37 146.66 67.2 147.23 67.89C147.8 68.59 148.57 69.13 149.4 69.56C150.25 69.97 151.2 70.25 152.21 70.32C153.24 70.41 154.25 70.12 155.17 70.11C156.09 70.07 156.96 70.54 157.96 70.95C158.95 71.35 160 71.69 161.1 71.89C162.2 72.09 163.35 72.16 164.51 71.97C165.66 71.81 166.79 71.29 167.75 70.69C168.72 70.1 169.66 69.53 170.72 69.52C171.78 69.48 172.95 69.82 174.17 69.66C176.56 69.41 178.82 67.75 179.55 65.44C179.93 64.31 179.97 63.08 179.67 61.95C179.38 60.81 178.67 59.8 177.79 59.1C176.9 58.39 175.82 57.94 174.71 57.88C173.59 57.82 172.59 58.14 171.69 58.05C170.77 58 170.17 57.33 169.59 56.59C168.99 55.84 168.29 55.19 167.56 54.67C166.07 53.64 164.41 53.11 162.9 53.08C161.39 53.03 160.07 53.39 159.04 53.84C158.03 54.34 157.26 54.86 156.75 55.3C156.23 55.74 155.91 56.05 155.79 56.19C155.23 56.77 154.9 57.26 154.7 57.6C154.5 57.94 154.43 58.12 154.48 58.16C154.53 58.19 154.69 58.08 154.95 57.82C155.21 57.56 155.56 57.14 156.08 56.64L156.1 56.62Z" fill="#121C2D"/> <path d="M15.1805 24.04C15.2505 23.99 15.3205 23.93 15.3805 23.85C15.5705 23.62 15.6805 23.33 15.8005 23.06C17.2505 19.61 20.3105 16.77 24.3105 17.32C26.2705 17.59 28.0305 18.67 29.4505 19.99C29.7905 20.31 30.2805 20.89 30.7505 20.9C30.9505 20.9 31.4105 20.8 31.6005 20.74C34.0205 20.03 35.5905 19.83 37.9505 20.72C40.3105 21.61 42.4405 23.91 42.8805 26.39C43.0605 27.39 42.9305 28.44 42.6705 29.43C42.3805 30.54 41.4405 31.6 40.5305 32.25C39.7405 32.82 38.8005 33.19 37.8305 33.29C36.7405 33.41 35.6705 33.49 34.5805 33.37C33.3905 33.24 32.1305 32.88 30.9505 33.23C30.3205 33.42 29.7605 33.79 29.1805 34.1C27.3505 35.07 25.0205 35.37 23.2305 34.33C22.3605 33.82 21.6305 33.03 20.6605 32.75C19.4505 32.41 18.0605 32.87 16.8705 33.12C15.0005 33.52 13.2805 33.52 11.9705 31.96C10.2605 29.93 10.0605 26.06 12.7205 24.68C13.0105 24.53 13.3205 24.44 13.6405 24.37C14.1305 24.27 14.7505 24.31 15.1805 24.01V24.04Z" fill="white"/> <path d="M17.1601 21.11C17.5301 20.66 18.4501 19.27 20.4801 18.27C21.4901 17.82 22.8201 17.52 24.2501 17.68C25.6901 17.83 27.1901 18.5 28.5501 19.57C28.8901 19.84 29.2301 20.13 29.5601 20.43L30.0601 20.91C30.3001 21.14 30.6201 21.23 30.9301 21.23C31.0801 21.23 31.2501 21.2 31.3801 21.15L31.7101 21.04C31.9301 20.96 32.1601 20.91 32.3901 20.85C32.8501 20.74 33.3201 20.66 33.8001 20.61C35.7101 20.42 37.8101 20.74 39.5101 21.89C41.1701 23.03 42.5101 24.96 42.6601 27.06C42.7301 28.1 42.5001 29.18 42.0001 30.1C41.4901 31.02 40.6901 31.78 39.7701 32.33C37.9101 33.44 35.6301 33.77 33.5601 33.09C33.0201 32.95 32.4401 32.82 31.8301 32.81C31.2201 32.8 30.6001 32.97 30.0901 33.21C29.0501 33.66 28.1401 34.29 27.2101 34.51C26.2501 34.72 25.2401 34.59 24.3101 34.3C23.8401 34.15 23.3701 33.98 22.9701 33.75C22.5501 33.52 22.1401 33.23 21.6801 32.98C21.2301 32.73 20.7001 32.52 20.1401 32.49C19.5801 32.46 19.0701 32.6 18.6101 32.72C17.7201 32.99 16.8701 33.15 16.0301 33.18C14.3601 33.25 12.8301 32.67 11.9601 31.63C11.5101 31.12 11.2101 30.54 11.0401 29.97C10.8601 29.39 10.8601 28.82 10.8901 28.31C11.0301 27.28 11.5001 26.51 11.9401 26.01C12.3801 25.5 12.7901 25.25 13.0001 25.11C14.1001 24.45 15.1801 24.32 15.9301 24.38C16.6801 24.44 17.1301 24.6 17.2401 24.51C17.2901 24.48 17.2401 24.4 17.0901 24.29C16.9301 24.17 16.6701 24 16.2401 23.88C15.4301 23.62 13.8001 23.49 12.1401 24.72C11.9301 24.9 11.4701 25.24 11.0101 25.9C10.5501 26.54 10.0901 27.54 10.0801 28.8C10.0801 30.05 10.6201 31.53 11.8401 32.61C13.0701 33.71 14.9501 34.14 16.7801 33.91C17.7001 33.83 18.6601 33.49 19.5001 33.3C20.3401 33.1 21.1201 33.49 21.9701 34.03C22.3901 34.29 22.8701 34.58 23.3701 34.76C23.8601 34.95 24.3801 35.11 24.9201 35.22C25.9801 35.43 27.1901 35.43 28.2601 34.94C29.2901 34.5 30.2101 33.85 31.1701 33.61C32.1301 33.38 33.1701 33.76 34.3001 34.01C36.6301 34.47 39.1201 33.82 40.9901 32.34C41.9201 31.6 42.6701 30.59 43.0501 29.45C43.4401 28.32 43.4801 27.08 43.2001 25.93C42.9201 24.78 42.3401 23.75 41.6101 22.87C40.9001 21.99 39.9701 21.27 38.9801 20.78C36.9601 19.81 34.7201 19.71 32.7501 20.1C32.2501 20.19 31.7701 20.33 31.3001 20.49C30.8801 20.64 30.6401 20.61 30.3401 20.27C29.6601 19.61 28.9501 19.02 28.2101 18.53C26.7301 17.53 25.0701 17 23.5601 17.02C22.0601 17.02 20.7501 17.43 19.7701 17.98C18.7901 18.54 18.1201 19.19 17.6601 19.68C17.2001 20.18 16.9401 20.54 16.8401 20.69C15.9301 22 15.7701 22.79 15.8601 22.83C15.9801 22.89 16.3501 22.23 17.1901 21.09L17.1601 21.11Z" fill="#121C2D"/> <path d="M93.1996 59.99C103.61 59.99 112.05 51.5506 112.05 41.14C112.05 30.7294 103.61 22.29 93.1996 22.29C82.789 22.29 74.3496 30.7294 74.3496 41.14C74.3496 51.5506 82.789 59.99 93.1996 59.99Z" fill="#51A6E0"/> <path d="M49.8998 59.99C60.3104 59.99 68.7498 51.5506 68.7498 41.14C68.7498 30.7294 60.3104 22.29 49.8998 22.29C39.4892 22.29 31.0498 30.7294 31.0498 41.14C31.0498 51.5506 39.4892 59.99 49.8998 59.99Z" fill="#EF2F46"/> <path d="M100.44 50.46H86.6402C85.6902 50.46 84.9102 49.68 84.9102 48.73V33.74C84.9102 32.79 85.6902 32.01 86.6402 32.01H98.1702C98.6202 32.01 99.0501 32.18 99.3801 32.5L101.65 34.72C101.98 35.04 102.17 35.5 102.17 35.96V48.74C102.17 49.69 101.39 50.47 100.44 50.47V50.46ZM86.6402 33.16C86.3202 33.16 86.0602 33.42 86.0602 33.74V48.73C86.0602 49.05 86.3202 49.31 86.6402 49.31H100.44C100.76 49.31 101.02 49.05 101.02 48.73V35.95C101.02 35.79 100.96 35.64 100.85 35.54L98.5802 33.32C98.4702 33.21 98.3302 33.16 98.1802 33.16H86.6502H86.6402Z" fill="white"/> <path d="M90.6703 40.08C89.4003 40.08 88.3604 39.05 88.3604 37.77C88.3604 36.49 89.3903 35.46 90.6703 35.46C91.9503 35.46 92.9804 36.49 92.9804 37.77C92.9804 39.05 91.9503 40.08 90.6703 40.08ZM90.6703 36.62C90.0303 36.62 89.5203 37.14 89.5203 37.77C89.5203 38.4 90.0403 38.92 90.6703 38.92C91.3003 38.92 91.8204 38.4 91.8204 37.77C91.8204 37.14 91.3003 36.62 90.6703 36.62Z" fill="white"/> <path d="M88.3599 46.58C88.2499 46.58 88.1399 46.55 88.0399 46.48C87.7699 46.3 87.6999 45.95 87.8799 45.68L89.4999 43.24C89.4999 43.24 89.5399 43.18 89.5699 43.15C90.0399 42.56 90.8899 42.47 91.4799 42.94L92.2799 43.58L93.9999 41.13C94.0999 40.99 94.2199 40.87 94.3599 40.78C94.6599 40.58 95.0199 40.51 95.3799 40.58C95.7299 40.65 96.0399 40.86 96.2399 41.16L99.2599 45.69C99.4399 45.96 99.3699 46.31 99.0999 46.49C98.8299 46.67 98.4799 46.6 98.2999 46.33L95.2799 41.8C95.2399 41.74 95.1799 41.72 95.1499 41.71C95.1199 41.71 95.0599 41.7 94.9999 41.74C94.9799 41.75 94.9599 41.77 94.9499 41.79L92.8799 44.75C92.7899 44.88 92.6499 44.97 92.4899 44.99C92.3299 45.01 92.1699 44.97 92.0499 44.87L90.7699 43.84C90.6799 43.77 90.5599 43.79 90.4899 43.87L88.8599 46.32C88.7499 46.49 88.5699 46.58 88.3799 46.58H88.3599Z" fill="white"/> <path d="M136.5 59.99C146.911 59.99 155.35 51.5506 155.35 41.14C155.35 30.7294 146.911 22.29 136.5 22.29C126.09 22.29 117.65 30.7294 117.65 41.14C117.65 51.5506 126.09 59.99 136.5 59.99Z" fill="#6ADAAF"/> <path d="M135.431 48.38C135.051 48.38 134.671 48.35 134.291 48.28C131.491 47.82 129.211 45.54 128.751 42.74C128.541 41.44 128.691 40.14 129.201 38.95C129.491 38.26 130.121 37.75 130.871 37.61C131.651 37.46 132.441 37.7 133.001 38.26C133.671 38.93 133.881 39.94 133.521 40.78C133.371 41.14 133.321 41.54 133.381 41.93C133.511 42.8 134.241 43.53 135.111 43.66C135.501 43.72 135.911 43.67 136.261 43.52C137.111 43.16 138.111 43.36 138.791 44.04C139.361 44.61 139.601 45.39 139.461 46.15C139.321 46.89 138.821 47.51 138.141 47.81C137.291 48.18 136.371 48.37 135.441 48.37L135.431 48.38ZM131.321 38.85C131.251 38.85 131.181 38.85 131.111 38.87C130.771 38.93 130.501 39.15 130.371 39.46C129.961 40.42 129.841 41.49 130.011 42.55C130.381 44.82 132.231 46.67 134.501 47.04C135.581 47.22 136.651 47.08 137.631 46.66C137.941 46.53 138.141 46.27 138.201 45.93C138.261 45.59 138.161 45.23 137.911 44.99C137.571 44.65 137.131 44.55 136.751 44.71C136.171 44.96 135.531 45.03 134.901 44.94C133.471 44.72 132.321 43.57 132.111 42.15C132.011 41.52 132.091 40.88 132.341 40.3C132.501 39.93 132.401 39.49 132.091 39.18C131.891 38.98 131.611 38.86 131.321 38.86V38.85Z" fill="white"/> <path d="M135.461 51.78C133.521 51.78 131.611 51.23 129.971 50.19L127.831 50.95C127.351 51.12 126.831 51.01 126.471 50.65C126.111 50.3 125.981 49.78 126.131 49.3L126.851 47.07C125.611 45.14 125.071 42.83 125.301 40.53C125.801 35.65 129.871 31.74 134.771 31.43C137.701 31.25 140.561 32.33 142.621 34.39C144.681 36.45 145.761 39.32 145.581 42.24C145.271 47.14 141.361 51.21 136.481 51.72C136.131 51.76 135.781 51.77 135.431 51.77H135.441L135.461 51.78ZM130.061 48.85C130.191 48.85 130.311 48.89 130.421 48.96C132.181 50.16 134.241 50.68 136.381 50.46C140.641 50.02 144.061 46.46 144.341 42.17C144.501 39.61 143.561 37.1 141.751 35.3C139.941 33.49 137.431 32.55 134.881 32.71C130.591 32.98 127.031 36.4 126.591 40.67C126.371 42.81 126.891 44.87 128.091 46.63C128.201 46.8 128.231 47 128.171 47.18L127.361 49.7L127.421 49.76L129.861 48.89C129.931 48.86 130.001 48.85 130.071 48.85H130.061Z" fill="white"/> <path d="M44.3302 52.52C44.2302 52.52 44.1402 52.5 44.0502 52.46C43.9502 52.41 43.8602 52.33 43.8002 52.23C43.7402 52.13 43.7102 52.02 43.7102 51.9V48.8H41.8502C41.3602 48.8 40.8802 48.6 40.5302 48.26C40.1802 47.91 39.9902 47.44 39.9902 46.94V34.54C39.9902 34.05 40.1902 33.57 40.5302 33.22C40.8802 32.87 41.3502 32.68 41.8502 32.68H57.9702C58.4602 32.68 58.9402 32.88 59.2802 33.22C59.6302 33.57 59.8302 34.04 59.8302 34.54V46.94C59.8302 47.43 59.6302 47.91 59.2802 48.26C58.9302 48.61 58.4602 48.8 57.9702 48.8H49.5002L44.7002 52.4C44.5902 52.48 44.4602 52.53 44.3302 52.52ZM41.8502 33.92C41.6902 33.92 41.5302 33.99 41.4102 34.1C41.2902 34.22 41.2302 34.37 41.2302 34.54V46.94C41.2302 47.1 41.3002 47.26 41.4102 47.38C41.5302 47.5 41.6802 47.56 41.8502 47.56H44.3302C44.4902 47.56 44.6502 47.63 44.7702 47.74C44.8902 47.86 44.9502 48.01 44.9502 48.18V50.66L48.9202 47.68C49.0302 47.6 49.1602 47.56 49.2902 47.56H57.9702C58.1302 47.56 58.2902 47.49 58.4102 47.38C58.5302 47.26 58.5902 47.11 58.5902 46.94V34.54C58.5902 34.38 58.5202 34.22 58.4102 34.1C58.2902 33.98 58.1402 33.92 57.9702 33.92H41.8502Z" fill="white"/> </svg> </span> </div> </header> <div class="card-icon-details"> <h4 class="card-title title-extra-small "> Relationship management</h4> <div class="card-description copy-small"> <p>Build and maintain lasting customer relationships from anywhere using convenient, multichannel conversational messaging.</p> </div> </div> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container slim medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1841327306" class="slider side-arrows slider-logo-pagination center-aligned-pagination " data-visible-slides="1" data-autoplay-enabled="false" aria-roledescription="slider"> <div class="slider-scroller "> <div class="slider-items" role="group" aria-live="Polite" aria-label="Items Slider"> <div id="1825200301-tabpanel" class="slider-item" role="tabpanel" aria-labelledby="1825200301-tab" aria-roledescription="slide" aria-label="Slide 1 of 3" data-logo="/content/dam/twilio-com/core-assets/customer-logos/a-c/chime.svg"> <div data-cmp-is="testimonial-component-v2" class="cmp-testimonial-component-v2 cmp-testimonial-component-v2--horizontal cmp-testimonial-component-v2--border-equal cmp-testimonial-component-v2--dark "> <div class="cmp-testimonial-component-v2__quote"> <div class="cmp-testimonial-component-v2__quote__main"> <div class="cmp-testimonial-component-v2__quote__main__content"> <div class="cmp-testimonial-component-v2__quote__main__content__text"> <div> <div class="richtext "> <p>Twilio had the features we needed, and performed well in financial modeling; but most importantly, our engineers were excited to use it.</p> </div> </div> </div> </div> <div class="cmp-testimonial-component-v2__quote__main__source"> <cite class="cmp-testimonial-component-v2__quote__main__source__reference"> <span class="cmp-testimonial-component-v2__quote__main__source__reference__author">Alan Bustelo-Killam</span> <small class="cmp-testimonial-component-v2__quote__main__source__reference__title"> Product Manager </small> </cite> </div> </div> </div> </div> </div> <div id="1825914386-tabpanel" class="slider-item" role="tabpanel" aria-labelledby="1825914386-tab" aria-roledescription="slide" aria-label="Slide 2 of 3" data-logo="/content/dam/twilio-com/core-assets/customer-logos/a-c/cars-for-sale.svg"> <div data-cmp-is="testimonial-component-v2" class="cmp-testimonial-component-v2 cmp-testimonial-component-v2--horizontal cmp-testimonial-component-v2--border-equal cmp-testimonial-component-v2--dark "> <div class="cmp-testimonial-component-v2__quote"> <div class="cmp-testimonial-component-v2__quote__main"> <div class="cmp-testimonial-component-v2__quote__main__content"> <div class="cmp-testimonial-component-v2__quote__main__content__text"> <div> <div class="richtext "> <p>The system we built allows dealers to meet customer demands and allows us—Carsforsale.com—to provide analytics and insights that dealers can use to create more personal interactions and plan their business.</p> </div> </div> </div> </div> <div class="cmp-testimonial-component-v2__quote__main__source"> <cite class="cmp-testimonial-component-v2__quote__main__source__reference"> <span class="cmp-testimonial-component-v2__quote__main__source__reference__author">Kristen Stengel</span> <small class="cmp-testimonial-component-v2__quote__main__source__reference__title"> Director of Marketing </small> </cite> </div> </div> </div> </div> </div> <div id="1826002735-tabpanel" class="slider-item" role="tabpanel" aria-labelledby="1826002735-tab" aria-roledescription="slide" aria-label="Slide 3 of 3" data-logo="/content/dam/twilio-com/core-assets/customer-logos/h-l/indeed.svg"> <div data-cmp-is="testimonial-component-v2" class="cmp-testimonial-component-v2 cmp-testimonial-component-v2--horizontal cmp-testimonial-component-v2--border-equal cmp-testimonial-component-v2--dark "> <div class="cmp-testimonial-component-v2__quote"> <div class="cmp-testimonial-component-v2__quote__main"> <div class="cmp-testimonial-component-v2__quote__main__content"> <div class="cmp-testimonial-component-v2__quote__main__content__text"> <div> <div class="richtext "> <p>Twilio not only gives us a browser based solution, but also the ability to easily add features like phone calls, chat, and SMS.</p> </div> </div> </div> </div> <div class="cmp-testimonial-component-v2__quote__main__source"> <cite class="cmp-testimonial-component-v2__quote__main__source__reference"> <span class="cmp-testimonial-component-v2__quote__main__source__reference__author">Naveed Hedayati</span> <small class="cmp-testimonial-component-v2__quote__main__source__reference__title"> Senior Product Manager </small> </cite> </div> </div> </div> </div> </div> </div> </div> <nav class="slider-pagination"> <button type="button" title="Previous Item" aria-label="Previous Item" class="slider-arrow previous "> <svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M0.749756 6.11427L0.299657 5.68064C0.0649983 5.92421 0.0666704 6.31026 0.30343 6.55178L0.749756 6.11427ZM17.2498 6.73927C17.5949 6.73927 17.8748 6.45945 17.8748 6.11427C17.8748 5.76909 17.5949 5.48927 17.2498 5.48927V6.73927ZM5.64531 1.93363C5.8848 1.68505 5.87742 1.28939 5.62884 1.0499C5.38026 0.810413 4.9846 0.817786 4.74511 1.06637L5.64531 1.93363ZM4.74888 11.0868C4.99052 11.3333 5.38623 11.3372 5.63272 11.0956C5.87922 10.8539 5.88317 10.4582 5.64154 10.2117L4.74888 11.0868ZM0.749756 6.73927H17.2498V5.48927H0.749756V6.73927ZM4.74511 1.06637L0.299657 5.68064L1.19985 6.5479L5.64531 1.93363L4.74511 1.06637ZM0.30343 6.55178L4.74888 11.0868L5.64154 10.2117L1.19608 5.67676L0.30343 6.55178Z" fill="#030B5D"/> </svg> </button> <div class="slider-dots logos" role="tab-list"></div> <button type="button" title="Pause" aria-label="Pause" class="slider-arrow pause"> <svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.509766" y="0.89624" width="4.43902" height="12.2073" fill="#121C2D"/> <rect x="7.16797" y="0.89624" width="4.43902" height="12.2073" fill="#121C2D"/> </svg> </button> <button type="button" title="Play" aria-label="Play" aria-hidden="true" class="slider-arrow play hidden"> <svg width="14" height="16" viewBox="0 0 14 16" fill="none" transform="translate(2,0)" xmlns="http://www.w3.org/2000/svg"> <path d="M12.0586 6.26795C13.3919 7.03775 13.3919 8.96225 12.0586 9.73205L3.05859 14.9282C1.72526 15.698 0.058593 14.7358 0.0585931 13.1962L0.0585935 2.80385C0.0585936 1.26425 1.72526 0.301995 3.05859 1.0718L12.0586 6.26795Z" fill="#121C2D"/> </svg> </button> <button type="button" title="Next Item" aria-label="Next Item" class="slider-arrow next "> <svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M0.749756 6.11427L0.299657 5.68064C0.0649983 5.92421 0.0666704 6.31026 0.30343 6.55178L0.749756 6.11427ZM17.2498 6.73927C17.5949 6.73927 17.8748 6.45945 17.8748 6.11427C17.8748 5.76909 17.5949 5.48927 17.2498 5.48927V6.73927ZM5.64531 1.93363C5.8848 1.68505 5.87742 1.28939 5.62884 1.0499C5.38026 0.810413 4.9846 0.817786 4.74511 1.06637L5.64531 1.93363ZM4.74888 11.0868C4.99052 11.3333 5.38623 11.3372 5.63272 11.0956C5.87922 10.8539 5.88317 10.4582 5.64154 10.2117L4.74888 11.0868ZM0.749756 6.73927H17.2498V5.48927H0.749756V6.73927ZM4.74511 1.06637L0.299657 5.68064L1.19985 6.5479L5.64531 1.93363L4.74511 1.06637ZM0.30343 6.55178L4.74888 11.0868L5.64154 10.2117L1.19608 5.67676L0.30343 6.55178Z" fill="#030B5D"/> </svg> </button> </nav> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1893799470" class="divider"> <p>Channels</p> <hr/> </div> </div> </div> <div id="" class="grid-container tiny medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Cross-channel text and media support on your customers’ favorite channels </h2> </div> </div> </div> <div id="" class="grid-container two-columns slim medium-gap equal-heights" style=""> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-loose large " role="list"> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Messaging logo</title> <g class="twilio_messaging"> <path d="M18.511 66.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 48.187V16.314A5.314 5.314 0 0 1 7.313 11h57.374A5.314 5.314 0 0 1 70 16.313v31.875a5.314 5.314 0 0 1-5.313 5.312H34.683L20.955 65.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 15.25c-.595 0-1.063.467-1.063 1.063v31.875c0 .594.468 1.062 1.063 1.062h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 49.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V16.313c0-.595-.468-1.063-1.063-1.063H7.313Z" class="path-fill"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="/en-us/messaging/channels/sms" target="_self"> SMS </a> </h5> <p>Reach consumers worldwide for conversational commerce and care without requiring an application.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio MMS Messaging logo</title> <g class="twilio_mms-messaging"> <path class="path-fill fill-path" d="M17.997 65a3.8 3.8 0 0 1-1.684-.356 3.826 3.826 0 0 1-1.61-1.452 3.915 3.915 0 0 1-.578-2.105V51.46H6.469a5.425 5.425 0 0 1-3.867-1.628A5.604 5.604 0 0 1 1 45.903V12.558c0-1.474.576-2.888 1.602-3.93A5.425 5.425 0 0 1 6.469 7H65.53c1.45 0 2.842.586 3.867 1.628A5.604 5.604 0 0 1 71 12.558v33.345a5.604 5.604 0 0 1-1.602 3.93 5.425 5.425 0 0 1-3.867 1.628H34.644L20.49 64.043c-.693.61-1.577.95-2.494.956ZM6.469 11.445c-.29 0-.569.117-.774.326a1.12 1.12 0 0 0-.32.786v33.345c0 .295.115.578.32.786.205.209.484.326.774.326h9.843a2.155 2.155 0 0 1 1.554.645 2.253 2.253 0 0 1 .634 1.578v10.604l13.847-12.294c.407-.354.93-.544 1.465-.533h31.72c.29 0 .568-.117.773-.326a1.12 1.12 0 0 0 .32-.786V12.558a1.12 1.12 0 0 0-.32-.786 1.085 1.085 0 0 0-.774-.326H6.47Z"/> <path class="path-fill fill-path" d="M19.813 19.449c0-2.21 1.762-4.001 3.937-4.001s3.938 1.791 3.938 4.001c0 2.21-1.763 4.002-3.938 4.002-2.175 0-3.938-1.792-3.938-4.002Zm.875 22.231a2.19 2.19 0 0 1-1.208-.374 2.237 2.237 0 0 1-.63-3.077l5.18-7.985a4.7 4.7 0 0 1 1.383-1.387 4.654 4.654 0 0 1 1.802-.694 4.399 4.399 0 0 1 1.925.107c.63.178 1.207.463 1.715.89l2.257 1.867 5.285-7.754a4.657 4.657 0 0 1 1.698-1.512c.683-.356 1.523-.516 2.205-.534.753 0 1.523.214 2.188.587a4.702 4.702 0 0 1 1.662 1.565l9.642 14.868a2.237 2.237 0 0 1-.63 3.077 2.158 2.158 0 0 1-3.027-.64l-9.66-14.868-.245-.142-.245.142-6.633 9.71c-.35.516-.892.854-1.487.943a2.148 2.148 0 0 1-1.68-.48l-4.095-3.362-.21-.053-.21.142-5.163 8.003c-.42.658-1.12.996-1.837.996l.017-.036Z"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="/en-us/messaging/channels/mms" target="_self"> MMS </a> </h5> <p>Improve customer satisfaction and offer quick support with rich media directly in the conversation.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Programmable Messaging logo</title> <g class="twilio_programmable-messaging"> <g class="path-fill"> <path d="M18.511 65.441a3.586 3.586 0 0 1-1.551-.34c-1.339-.616-2.189-1.912-2.168-3.4l.064-9.201H7.313A5.314 5.314 0 0 1 2 47.187V15.314A5.314 5.314 0 0 1 7.313 10h57.374A5.314 5.314 0 0 1 70 15.313v31.874a5.314 5.314 0 0 1-5.313 5.313H34.683L20.955 64.528a3.665 3.665 0 0 1-2.444.934v-.02ZM7.313 14.25c-.595 0-1.063.467-1.063 1.063v31.874c0 .596.468 1.063 1.063 1.063h9.647c.574 0 1.105.234 1.509.616.403.404.616.935.616 1.509l-.064 10.157L32.472 48.76c.383-.34.893-.531 1.403-.531h30.813c.594 0 1.062-.468 1.062-1.063V15.313c0-.596-.468-1.063-1.063-1.063H7.313Z"/> <path d="M19 35.5a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Zm17 0a4.25 4.25 0 1 0 0-8.5 4.25 4.25 0 0 0 0 8.5Z"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="/en-us/messaging/channels/sms" target="_self"> Conversational chat </a> </h5> <p>Engage customers seamlessly with an integrated, in-app, or web chat experience.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-loose large " role="list"> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio Facebook Messenger logo</title> <g class="twilio_facebook-messenger"> <g class="path-fill"> <path d="M35.941 70a34.118 34.118 0 0 1-18.266-5.306l-7.057 2.525a4.379 4.379 0 0 1-4.528-.976 4.396 4.396 0 0 1-1.13-4.5l2.395-7.45a34.001 34.001 0 0 1-1.681-33.694A33.942 33.942 0 0 1 17.289 7.59a33.867 33.867 0 0 1 16.533-5.513 33.869 33.869 0 0 1 24.36 8.118 34 34 0 0 1 4.025 47.43 33.888 33.888 0 0 1-22.642 12.121A32.17 32.17 0 0 1 35.94 70Zm-17.906-9.785c.423-.001.836.124 1.187.36a29.333 29.333 0 0 0 19.855 5.01 29.673 29.673 0 0 0 20.18-10.465 29.772 29.772 0 0 0-3.567-41.905 29.656 29.656 0 0 0-21.656-6.893 29.792 29.792 0 0 0-18.57 8.256 29.884 29.884 0 0 0-8.978 18.255 29.414 29.414 0 0 0 5.001 19.889 2.124 2.124 0 0 1 .255 1.847l-2.691 8.49.19.191 8.116-2.887a2.14 2.14 0 0 1 .678-.148Z"/> <path d="M20.358 47.618a2.379 2.379 0 0 1-2.2-1.473 2.389 2.389 0 0 1 .516-2.6l13.221-13.243 8.651 8.667L50.4 29.1a2.38 2.38 0 0 1 4.066 1.687c0 .633-.251 1.24-.698 1.687l-13.22 13.243-8.652-8.667-9.853 9.87a2.375 2.375 0 0 1-1.684.698Z"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="/en-us/messaging/channels/facebook-messenger" target="_self"> Facebook Messenger </a> </h5> <p>Connect to billions with rich messaging, live cross-channel support, and ads that click to message.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative is-product"> <title>Twilio WhatsApp Business API logo</title> <g class="twilio_whatsapp-business-api"> <g class="path-fill"> <path d="M35.964 58.61a23.2 23.2 0 0 1-3.803-.318c-9.35-1.53-16.957-9.137-18.487-18.486-.701-4.335-.191-8.691 1.488-12.643.977-2.317 3.08-3.995 5.567-4.484a7.83 7.83 0 0 1 7.097 2.167c2.23 2.232 2.932 5.61 1.72 8.415a6.967 6.967 0 0 0-.466 3.846c.446 2.911 2.868 5.333 5.78 5.78a6.967 6.967 0 0 0 3.845-.468c2.848-1.211 6.162-.531 8.436 1.742 1.912 1.913 2.72 4.505 2.231 7.034a7.616 7.616 0 0 1-4.398 5.546 22.66 22.66 0 0 1-9.01 1.87ZM22.26 26.78c-.234 0-.468.021-.702.064a3.337 3.337 0 0 0-2.486 1.976 18.502 18.502 0 0 0-1.19 10.306c1.233 7.585 7.395 13.748 14.98 14.98 3.592.595 7.183.149 10.434-1.254 1.02-.446 1.7-1.317 1.912-2.422a3.55 3.55 0 0 0-.956-3.145c-1.147-1.147-2.613-1.466-3.867-.935a11.3 11.3 0 0 1-6.162.765c-4.76-.722-8.606-4.568-9.329-9.328-.318-2.104-.063-4.25.765-6.162.532-1.233.192-2.72-.828-3.74a3.652 3.652 0 0 0-2.571-1.063v-.042Z"/> <path d="M36.05 70c-6.482 0-12.856-1.827-18.317-5.312l-7.14 2.55a4.342 4.342 0 0 1-4.547-.999 4.386 4.386 0 0 1-1.126-4.505l2.4-7.437a34.316 34.316 0 0 1-5.14-21.865C3.836 16.156 17.435 3.088 33.797 2.068c9.774-.616 19.336 2.996 26.22 9.88 6.885 6.885 10.497 16.447 9.881 26.221-1.02 16.362-14.088 29.961-30.364 31.64a32.3 32.3 0 0 1-3.506.17l.021.021Zm-18.02-9.796c.425 0 .85.128 1.19.361 5.865 4.017 12.75 5.759 19.889 5.015 14.237-1.466 25.647-13.344 26.56-27.666.532-8.563-2.613-16.914-8.647-22.948-6.035-6.035-14.407-9.18-22.95-8.649-14.32.893-26.22 12.303-27.665 26.54-.722 7.14.999 14.024 5.015 19.889a2.2 2.2 0 0 1 .276 1.849l-2.72 8.414.191.191 8.139-2.89a2.04 2.04 0 0 1 .7-.127l.022.021Z"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="/en-us/messaging/channels/whatsapp" target="_self"> WhatsApp </a> </h5> <p>Provide customer care and commerce, notifications, and promotions on the world’s most popular messaging app.</p> </div> </li> </ul> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="621101085" class="divider"> <p>Developer Resources</p> <hr/> </div> </div> </div> <div id="" class="grid-container offset-40-60 default medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="-1601533312" class="title "> <h2 class="title-small"> Read the Docs </h2> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p style=" text-align: left; "><span class="copy-large">Explore quick-start guides, SDKs, our comprehensive resource library, and a free demo to kickstart your build with the Conversations API.</span></p> </div> <div data-uuid="-1974282488" class="button-container vertical large left"> <a class="button button-primary right" href="https://www.twilio.com/docs/conversations" target="_blank" data-uuid="adc94228-2e5d-362a-9e1d-474df8a70c1a" aria-label="Read Conversations API Docs"> <span class="button-text"> Read Conversations API Docs <span class="button-icon external medium"> <svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </span> </a> <a class="button button-secondary right" href="https://www.twilio.com/en-us/messaging" target="_self" data-uuid="d426e640-0b73-3b4e-a15a-b66f55978e22" aria-label="Get started with Messaging"> <span class="button-text"> Get started with Messaging </span> </a> </div> </div> <div class="grid-container-column"> <div class="code-snippet"> <p class="code-snippet-title title-super-text"> Create a WhatsApp message </p> <nav role="tablist" class="code-snippet-tabs" aria-multiselectable="false"> <button type="button" role="tab" id="code-tab-992432038" class="code-snippet-button" aria-controls="code-tabpanel-992432038" aria-selected="true" data-cmp-hook-tabs="tab">Node.js</button> <button type="button" role="tab" id="code-tab-992432039" class="code-snippet-button" aria-controls="code-tabpanel-992432039" aria-selected="false" data-cmp-hook-tabs="tab">Python</button> <button type="button" role="tab" id="code-tab-992432040" class="code-snippet-button" aria-controls="code-tabpanel-992432040" aria-selected="false" data-cmp-hook-tabs="tab">C#</button> <button type="button" role="tab" id="code-tab-992432041" class="code-snippet-button" aria-controls="code-tabpanel-992432041" aria-selected="false" data-cmp-hook-tabs="tab">Java</button> <button type="button" role="tab" id="code-tab-992432042" class="code-snippet-button" aria-controls="code-tabpanel-992432042" aria-selected="false" data-cmp-hook-tabs="tab">PHP</button> <button type="button" role="tab" id="code-tab-992432043" class="code-snippet-button" aria-controls="code-tabpanel-992432043" aria-selected="false" data-cmp-hook-tabs="tab">Ruby</button> <button type="button" role="tab" id="code-tab-992432044" class="code-snippet-button" aria-controls="code-tabpanel-992432044" aria-selected="false" data-cmp-hook-tabs="tab">Twilio-CLI</button> <button type="button" role="tab" id="code-tab-992432045" class="code-snippet-button" aria-controls="code-tabpanel-992432045" aria-selected="false" data-cmp-hook-tabs="tab">Curl</button> </nav> <div class="code-snippet-slides"> <div id="code-tabpanel-992432038" role="tabpanel" aria-labelledby="code-tab-992432038" class="code-snippet-panel selected-panel code-snippet-panel-not-full-height"> <pre><code class="language-js">// Download the helper library from https://www.twilio.com/docs/node/install // Find your Account SID and Auth Token at twilio.com/console // and set the environment variables. See http://twil.io/secure const accountSid = process.env.TWILIO_ACCOUNT_SID; const authToken = process.env.TWILIO_AUTH_TOKEN; const client = require('twilio')(accountSid, authToken); client.conversations.v1.conversations .create({friendlyName: 'Friendly Conversation'}) .then(conversation => console.log(conversation.sid));</code></pre> </div> <div id="code-tabpanel-992432039" role="tabpanel" aria-labelledby="code-tab-992432039" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-python"># Download the helper library from https://www.twilio.com/docs/python/install import os from twilio.rest import Client # Find your Account SID and Auth Token at twilio.com/console # and set the environment variables. See http://twil.io/secure account_sid = os.environ['TWILIO_ACCOUNT_SID'] auth_token = os.environ['TWILIO_AUTH_TOKEN'] client = Client(account_sid, auth_token) conversation = client.conversations \\ .v1 \\ .conversations \\ .create(friendly_name='Friendly Conversation') print(conversation.sid)</code></pre> </div> <div id="code-tabpanel-992432040" role="tabpanel" aria-labelledby="code-tab-992432040" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-csharp">// Install the C# / .NET helper library from twilio.com/docs/csharp/install using System; using Twilio; using Twilio.Rest.Conversations.V1; class Program { static void Main(string[] args) { // Find your Account SID and Auth Token at twilio.com/console // and set the environment variables. See http://twil.io/secure string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID"); string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN"); TwilioClient.Init(accountSid, authToken); var conversation = ConversationResource.Create( friendlyName: "Friendly Conversation" ); Console.WriteLine(conversation.Sid); } }</code></pre> </div> <div id="code-tabpanel-992432041" role="tabpanel" aria-labelledby="code-tab-992432041" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-java">// Install the Java helper library from twilio.com/docs/java/install import com.twilio.Twilio; import com.twilio.rest.conversations.v1.Conversation; public class Example { // Find your Account SID and Auth Token at twilio.com/console // and set the environment variables. See http://twil.io/secure public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID"); public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN"); public static void main(String[] args) { Twilio.init(ACCOUNT_SID, AUTH_TOKEN); Conversation conversation = Conversation.creator() .setFriendlyName("Friendly Conversation").create(); System.out.println(conversation.getSid()); } }</code></pre> </div> <div id="code-tabpanel-992432042" role="tabpanel" aria-labelledby="code-tab-992432042" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-php"><?php // Update the path below to your autoload.php, // see https://getcomposer.org/doc/01-basic-usage.md require_once '/path/to/vendor/autoload.php'; use Twilio\\Rest\\Client; // Find your Account SID and Auth Token at twilio.com/console // and set the environment variables. See http://twil.io/secure \$sid = getenv("TWILIO_ACCOUNT_SID"); \$token = getenv("TWILIO_AUTH_TOKEN"); \$twilio = new Client(\$sid, \$token); \$conversation = \$twilio->conversations->v1->conversations ->create([ "friendlyName" => "Friendly Conversation" ] ); print(\$conversation->sid);</code></pre> </div> <div id="code-tabpanel-992432043" role="tabpanel" aria-labelledby="code-tab-992432043" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-ruby"># Download the helper library from https://www.twilio.com/docs/ruby/install require 'rubygems' require 'twilio-ruby' # Find your Account SID and Auth Token at twilio.com/console # and set the environment variables. See http://twil.io/secure account_sid = ENV['TWILIO_ACCOUNT_SID'] auth_token = ENV['TWILIO_AUTH_TOKEN'] @client = Twilio::REST::Client.new(account_sid, auth_token) conversation = @client.conversations .v1 .conversations .create(friendly_name: 'Friendly Conversation') puts conversation.sid</code></pre> </div> <div id="code-tabpanel-992432044" role="tabpanel" aria-labelledby="code-tab-992432044" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-bash"># Install the twilio-cli from https://twil.io/cli twilio api:conversations:v1:conversations:create \\ --friendly-name "Friendly Conversation"</code></pre> </div> <div id="code-tabpanel-992432045" role="tabpanel" aria-labelledby="code-tab-992432045" class="code-snippet-panel code-snippet-panel-not-full-height"> <pre><code class="language-curl">curl -X POST "https://conversations.twilio.com/v1/Conversations" \\ --data-urlencode "FriendlyName=Friendly Conversation" \\ -u \$TWILIO_ACCOUNT_SID:\$TWILIO_AUTH_TOKEN</code></pre> </div> </div> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container slim medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-980656977" class="title text-center"> <h2 class="title-small"> Quickly implement multichannel conversational messaging </h2> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="tabs horizontal tabs--light" data-author-mode="DISABLED"> <div class="tabs-navigation-container"> <div class="tabs-navigation-container-border"> <nav class="tabs-navigation" role="tablist" aria-multiselectable="false" data-cmp-hook-tabs="tab"> <button type="button" class="tabs-button" id="-1311404753" aria-selected role="tab" aria-controls="panel--1311404753" tabindex="0"> <span class="tabs-title">Multichannel</span> </button> <button type="button" class="tabs-button" id="-697600450" role="tab" aria-controls="panel--697600450" tabindex="-1"> <span class="tabs-title">Flexible</span> </button> <button type="button" class="tabs-button" id="-522069899" role="tab" aria-controls="panel--522069899" tabindex="-1"> <span class="tabs-title">Customizable</span> </button> <button type="button" class="tabs-button" id="-1307744301" role="tab" aria-controls="panel--1307744301" tabindex="-1"> <span class="tabs-title">Compliant</span> </button> <button type="button" class="tabs-button" id="-1834546861" role="tab" aria-controls="panel--1834546861" tabindex="-1"> <span class="tabs-title">CustomerAI</span> </button> </nav> </div> </div> <div class="tabs-slides"> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--1311404753" aria-labelledby="-1311404753" aria-hidden="false" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container two-columns slim medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="1443894562" class="title "> <h4 class="title-extra-small"> Support conversations across preferred channels </h4> </div> <ul data-uuid="" class="list list-checklist spacing-tight small " role="list"> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Multichannel messaging </h5> <p>Support SMS, MMS, chat, WhatsApp, and Facebook Messenger.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Cross-channel orchestration </h5> <p>Maintain conversations with customers across channels without the need for additional code.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Media support </h5> <p>Display photos, videos, and other file types seamlessly across channels.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Delivery statuses </h5> <p>View message delivery and read receipts across channels in message logs.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_multichannel_conversations-api.png/_jcr_content/renditions/compressed-original.webp" alt="Conversations api connecting with multiparty through various channels" title="Conversations api connecting with multiparty through various channels" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_multichannel_conversations-api.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--697600450" aria-labelledby="-697600450" aria-hidden="true" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container two-columns slim medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-816378829" class="title "> <h4 class="title-extra-small"> Define your conversational messaging </h4> </div> <ul data-uuid="" class="list list-checklist spacing-tight small " role="list"> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Web SDKs </h5> <p>Use pre-built framework for browser-based chat applications to connect backend and frontend databases.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Mobile SDKs </h5> <p>Quickly deploy in-app chat with SDKs across Android and iOS devices.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Quick Deploy Applications and UI Kits </h5> <p>Get to market faster with full-featured Swift and Kotlin apps for iOS and Android.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Scale conversations </h5> <p>Have 1:1 conversations with thousands of customers or one conversation with up to 1,000 people.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_flexible_conversations-api.png/_jcr_content/renditions/compressed-original.webp" alt="Browser-based chat applications connecting customers through backend and frontend databases" title="Browser-based chat applications connecting customers through backend and frontend databases" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_flexible_conversations-api.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--522069899" aria-labelledby="-522069899" aria-hidden="true" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container two-columns slim medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="392631580" class="title "> <h4 class="title-extra-small"> Deliver a custom conversational experience </h4> </div> <ul data-uuid="" class="list list-checklist spacing-loose small " role="list"> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Custom attributes </h5> <p>Customize any part of the conversation—user, participant, or message—for an experience unique to your business.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Participant management </h5> <p>Add or remove participants and assign roles via the API.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Scoped webhooks </h5> <p>Add an intelligent assistant or Twilio Studio flow to a specific conversation and define an escalation path.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Message persistence </h5> <p>Maintain conversation history for ongoing context with every interaction.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_customizable_conversations-api.png/_jcr_content/renditions/compressed-original.webp" alt="Customizing any part of your conversation for an unique customer experience " title="Customizing any part of your conversation for an unique customer experience " class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_customizable_conversations-api.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--1307744301" aria-labelledby="-1307744301" aria-hidden="true" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div id="" class="grid-container two-columns slim medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="-1647734186" class="title "> <h4 class="title-extra-small"> Ensure compliance in every interaction </h4> </div> <ul data-uuid="" class="list list-checklist spacing-loose small " role="list"> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Cloud-based archives </h5> <p>Maintain a threaded archive of participants and message history.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> States and timers </h5> <p>Define conversations as active, inactive, or closed—and set conversation expiration time.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Advanced opt-out </h5> <p>Customize opt-ins and opt-outs for local regulations and languages in the Console.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> HIPAA eligibility </h5> <p>Deliver HIPAA-compliant patient care with SMS and chat.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_compliant_conversations-api.png/_jcr_content/renditions/compressed-original.webp" alt=" Changing compliance protocol" title=" Changing compliance protocol" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_compliant_conversations-api.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> </div> </div> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--1834546861" aria-labelledby="-1834546861" aria-hidden="true" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container two-columns slim medium-gap center" style=""> <div class="grid-container-column"> <div data-uuid="-115716994" class="title "> <h4 class="title-extra-small"> Combine the power of conversations with AI </h4> </div> <ul data-uuid="" class="list list-checklist spacing-tight small " role="list"> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Keep the conversation going </h5> <p>Optimize deliverability with our AI-powered real-time routing algorithms.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Automate the conversation </h5> <p>Integrate with chatbots to automate responses to incoming messages.</p> </div> </li> <li> <div class="list-marker "> <svg width="8" height="7" viewBox="0 0 8 7" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 3.93333L2.73504 5.88889L7.44445 1" stroke="#121C2D" stroke-width="1.11111" stroke-linecap="round" stroke-linejoin="round"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> Use your customer data </h5> <p>Leverage valuable data from customer conversations with AI and the Twilio Segment CDP to enrich customer profiles and unlock new insights.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_customer_ai.png/_jcr_content/renditions/compressed-original.webp" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/conversations-api/illo_capabilities_customer_ai.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container two-columns default medium-gap center" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/messaging/sms/forrester-report-cover-lg.png/_jcr_content/renditions/compressed-original.webp" alt="A Forrester Consulting study about the ROI of Twilio Messaging." title="A Forrester Consulting study about the ROI of Twilio Messaging." class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/messaging/sms/forrester-report-cover-lg.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> <div class="grid-container-column"> <div data-uuid="-1720607341" class="title "> <p class="eyebrow title-super-text"> Resources </p> <h3 class="title-medium"> The Total Economic Impact™ of Twilio Messaging </h3> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p>A commissioned study conducted by Forrester Consulting found Twilio Messaging provided a 3% increase in messages delivered, a 15% improvement among development teams, and a 30 to 40% opt-in rate for SMS marketing. </p> </div> <div data-uuid="-1937692139" class="button-container horizontal medium left"> <a class="button button-secondary right" href="https://ahoy.twilio.com/forrester-tei-messaging?utm_source=web&utm_medium=conversations-api" target="_self" data-uuid="5beeaff8-1744-3914-be68-c141ad76e3d7" aria-label="View the 2023 study"> <span class="button-text"> View the 2023 study </span> </a> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1688052354" class="divider"> <p>Pricing</p> <hr/> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <h2 style=" text-align: center; max-width: 580.0px; margin-left: auto; margin-right: auto; ">Scalable conversational messaging with flexible pricing</h2> <p style=" text-align: center; max-width: 768.0px; margin-left: auto; margin-right: auto; "><span class="copy-large">Only pay for the messages you send with monthly, per-user pricing. No subscriptions, and get additional volume and committed use discounts as you scale.</span></p> </div> <div data-uuid="1923756481" class="button-container horizontal large center"> <a class="button button-primary right" href="https://www.twilio.com/en-us/messaging/pricing/conversations-api" target="_self" data-uuid="bb728ae0-564f-34a9-9e60-d87a9e7ebff7" aria-label="See pricing"> <span class="button-text"> See pricing </span> </a> <a class="button button-secondary right" href="https://www.twilio.com/try-twilio" target="_self" data-uuid="7eb309c1-d24b-3f54-8729-a0e3e0782de5" aria-label="Start for free"> <span class="button-text"> Start for free </span> </a> </div> </div> </div> </div> </section> <section class="section-wrapper default" id=""> <div class="section-content "> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="19155482" class="divider"> <hr/> </div> <div id="" class="grid-container default medium-gap" style=""> </div> <div class="richtext " data-ext-icon="<svg viewBox="0 0 79 79" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>An icon of a outbound link arrow</title> <path class="icon-stroke" d="M75.3037 3.98207L3 75.5935M75.3037 3.98207L76.0435 43.3021M75.3037 3.98207L35.951 3.59351" stroke="#F22F46" stroke-width="5.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> "> <p>*Twilio Conversational Messaging: The Next Storefront Experience</p> </div> </div> </div> </div> </section> </main> <footer class="experiencefragment global-footer"> <div class="xfpage page basicpage"> <div class="footer bg-color-footer-blue" data-uuid="1479458978"> <h2 class="footer-title">We can't wait to see what you build.</h2> <div class="grid-container four-columns footer-four-columns"> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Products</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/engage" target="_self" data-uuid="c02ed0c4-5e2f-33e8-8325-883852001850">Twilio Engage</a> </li> <li> <a href="/en-us/flex" target="_self" data-uuid="9166bfad-df99-36ef-be3b-67fbf3cd2580">Flex</a> </li> <li> <a href="/en-us/user-authentication-identity" target="_self" data-uuid="5008e6ab-e48a-3a78-9062-e0c25ba11d82">User Authentication & Identity</a> </li> <li> <a href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="a138ee74-4ac8-3afa-81bb-c6006970f67d">Lookup</a> </li> <li> <a href="/en-us/user-authentication-identity/verify" target="_self" data-uuid="fcce1d7b-71ca-3ec7-a741-19e242544f0b">Verify</a> </li> <li> <a href="/en-us/voice" target="_self" data-uuid="6281d439-e098-3c55-8502-68f813c8d6ef">Voice </a> </li> <li> <a href="/en-us/video" target="_self" data-uuid="65ca1446-13b7-3b42-8d37-fa4c5e1b0cf9">Video</a> </li> <li> <a href="/en-us/messaging" target="_self" data-uuid="764bd06f-5b86-338b-b968-d2da3ea461cf">Messaging</a> </li> <li> <a href="/en-us/products/beta" target="_self" data-uuid="e5d0d93e-1048-3f43-a1d3-6e1e0bc29674">Beta products and features</a> </li> <li> <a href="/en-us/products#all-products" target="_self" data-uuid="bab082cf-9f72-3b30-b6ab-2f78a0a924cf">All products</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Solutions</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/customer-data-platform" target="_self" data-uuid="f520079d-ac27-3132-b2d1-92b588632411">Customer Data Platform</a> </li> <li> <a href="/en-us/solutions/text-marketing" target="_self" data-uuid="522a431f-209a-3ec5-b5e5-b9f9b7d07c91">SMS Marketing</a> </li> <li> <a href="https://www.twilio.com/docs/proxy" target="_self" data-uuid="beee893c-9802-3f36-b726-ad84bfd5161d">Commerce Communications</a> </li> <li> <a href="/en-us/flex" target="_self" data-uuid="8a743038-3183-30e7-933a-5aeafe10fed0">Contact Center</a> </li> <li> <a href="/content/twilio-com/global/en-us/products?tab=2.html#all-solutions" target="_self" data-uuid="e35c3698-b086-31a9-8285-08cb1a7df1dc">All solutions</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Docs</h3> <ul class="column-list" role="list"> <li> <a href="https://www.twilio.com/docs#communications" target="_self" data-uuid="52bc527b-fb07-3606-9b28-5f1366e0ab35">Communications</a> </li> <li> <a href="https://www.twilio.com/docs#customer-data" target="_self" data-uuid="ad98a38b-2bbc-38fa-ad8c-93c246429cce">Customer Data</a> </li> <li> <a href="https://www.twilio.com/docs#engagement-applications" target="_self" data-uuid="8e31120e-a1d4-31cd-9c04-7cdb08adbd8e">Engagement Applications</a> </li> <li> <a href="https://www.twilio.com/docs#twilio-essentials" target="_self" data-uuid="787ee5df-0b36-355e-ad32-462b2978ebd3">Twilio Essentials</a> </li> <li> <a href="https://www.twilio.com/docs/libraries" target="_self" data-uuid="486e5dd5-a1b5-3ed0-8cfb-f0eb7782d0fa">Helper Libraries</a> </li> <li> <a href="https://www.twilio.com/docs#developer-toolkit" target="_self" data-uuid="eb59aebd-2205-3eb8-8e9c-e39d44b18e63">Developer Resources</a> </li> <li> <a href="https://www.twilio.com/docs" target="_self" data-uuid="1f96a301-307e-39a0-946a-3410f5de0f46">All Docs</a> </li> </ul> </div> <div class="grid-container-column footer-list"> <h3 class="footer-list-title">Company</h3> <ul class="column-list" role="list"> <li> <a href="/en-us/company" target="_self" data-uuid="6b1d16f2-1f2c-36d6-8645-01e7fcf55ba1">About Twilio</a> </li> <li> <a href="/en-us/why-twilio" target="_self" data-uuid="d8013c8b-3981-3630-a954-fc82a9d2de0d">Why Twilio</a> </li> <li> <a href="/en-us/customer-engagement-platform" target="_self" data-uuid="f3c280b0-64a5-325f-826d-04384a3be13f">Customer Engagement Platform</a> </li> <li> <a href="/en-us/trust" target="_self" data-uuid="6d9105d9-4e26-3d80-9771-19eead2418fd">Trusted Communications</a> </li> <li> <a href="https://customers.twilio.com/en-us" target="_self" data-uuid="c0a28646-a990-34d5-b2e7-35c38b0e4ad5">Customers</a> </li> <li> <a href="https://support.twilio.com/hc/en-us?_ga=2.14534711.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="b7f3c047-f3f4-33c3-98f3-b02375c224d6">Get Help</a> </li> <li> <a href="/en-us/help/sales" target="_self" data-uuid="0a65c396-e36e-311c-b01b-9da69b9e917d">Contact Sales</a> </li> <li> <a href="/en-us/press" target="_self" data-uuid="90729e7e-0cb3-3343-9e65-d5f4e59a51a8">Press & Media</a> </li> <li> <a href="/en-us/public-policy/blog" target="_self" data-uuid="3733d276-a0da-38fb-9ead-a672c1e8f9c4">Public Policy</a> </li> <li> <a href="https://investors.twilio.com/overview/default.aspx?_ga=2.87002776.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="ac959d3a-4767-365f-be24-3e5cee414dfe">Investor Relations</a> </li> <li> <a href="/en-us/events" target="_self" data-uuid="33b9f8ca-b939-3c2e-aa42-bd56242bb2bd">Events</a> </li> <li> <a href="/en-us/company/jobs" target="_self" data-uuid="49f9ee9e-ca54-3335-aad1-2a713325f645">Jobs at Twilio</a> </li> </ul> </div> </div> <div class="footer-bottom"> <div class="social-share"> <span class="m-share-label"></span> <ul> <li> <a href="https://www.facebook.com/TeamTwilio" target="_blank" class="m-share-button share-facebook js-share-facebook"> <span class="name"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>Facebook logo</title> <g class="social_facebook-alt"> <path d="M41.667 24.667v-6.8c0-2.947.68-4.534 5.44-4.534H53V2h-9.067C32.6 2 28.067 9.48 28.067 17.867v6.8H19V36h9.067v34h13.6V36h9.973L53 24.667H41.667Z" class="path-fill fill-path"/> </g> </svg> </span> </a> </li> <li> <a href="https://x.com/twilio" target="_blank" class="m-share-button js-share-twitter"> <span class="name"> <svg class="icon--social" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Twitter Logo</title> <desc>Follow us on Twitter</desc> <path class="path-fill" fill-rule="evenodd" clip-rule="evenodd" d="M45.8103 0.538939C46.0027 0.718527 46.1579 0.93438 46.267 1.17416C46.3762 1.41394 46.4372 1.67294 46.4464 1.93636C46.4557 2.19978 46.4132 2.46245 46.3212 2.70937C46.2292 2.95628 46.0896 3.18259 45.9103 3.37535L29.6373 20.8773L47.5984 44.7882C47.8218 45.0861 47.9579 45.4405 47.9917 45.8116C48.0254 46.1828 47.9554 46.5561 47.7895 46.8895C47.6235 47.223 47.3682 47.5035 47.0522 47.6996C46.7362 47.8957 46.3719 47.9996 46.0003 47.9997H35.0437C34.7338 47.9999 34.4282 47.9279 34.1509 47.7893C33.8735 47.6508 33.6321 47.4495 33.4456 47.2014L20.8048 30.3775L5.01581 47.3618C4.83668 47.5545 4.62145 47.71 4.38243 47.8192C4.1434 47.9285 3.88526 47.9895 3.62273 47.9987C3.3602 48.0079 3.09843 47.9652 2.85237 47.873C2.60631 47.7807 2.38077 47.6408 2.18864 47.4611C1.9965 47.2815 1.84153 47.0656 1.73257 46.8259C1.62361 46.5862 1.5628 46.3273 1.55361 46.064C1.54441 45.8007 1.58702 45.5382 1.67899 45.2914C1.77096 45.0446 1.9105 44.8184 2.08963 44.6257L18.3626 27.1238L0.401529 3.21287C0.178289 2.91513 0.0421298 2.56092 0.00830905 2.18994C-0.0255117 1.81896 0.044342 1.44586 0.210043 1.11245C0.375744 0.77904 0.630745 0.498494 0.946472 0.302248C1.2622 0.106002 1.62618 0.00180897 1.99763 0.00134389H12.9563C13.2658 0.0014979 13.571 0.0736829 13.848 0.212219C14.125 0.350754 14.3661 0.551861 14.5524 0.799712L27.1932 17.6236L42.9801 0.639236C43.1592 0.446298 43.3744 0.290646 43.6135 0.181176C43.8526 0.0717072 44.1108 0.0105677 44.3735 0.00125299C44.6362 -0.00806174 44.8981 0.0346309 45.1443 0.12689C45.3905 0.21915 45.6161 0.359167 45.8083 0.538939H45.8103ZM25.5091 22.0508C25.4527 21.9853 25.4006 21.9163 25.3531 21.8441L11.9582 4.01124H6.00787L36.0397 43.9898H41.9901L25.5091 22.0508Z" fill="#F22F46"/> </svg> </span> </a> </li> <li> <a href="https://www.linkedin.com/company/twilio-inc-" target="_blank" class="m-share-button js-share-linkedin"> <span class="name"> <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 72 72" class="icon--decorative" role="presentation"> <title>LinkedIn logo</title> <g class="social_linkedin-alt"> <path d="M17.436 68.5V24.645H2.86V68.5h14.576ZM10.15 18.653c5.083 0 8.247-3.367 8.247-7.575-.095-4.304-3.164-7.578-8.15-7.578C5.26 3.5 2 6.774 2 11.078c0 4.208 3.163 7.575 8.055 7.575h.095ZM25.505 68.5H40.08V44.009c0-1.31.095-2.62.48-3.557 1.053-2.619 3.452-5.331 7.479-5.331 5.274 0 7.384 4.021 7.384 9.917V68.5H70V43.352c0-13.47-7.191-19.738-16.782-19.738-7.863 0-11.316 4.396-13.234 7.39h.097v-6.361H25.505c.191 4.115 0 43.855 0 43.855Z" class="path-fill fill-path"/> </g> </svg> </span> </a> </li> <li> <a href="https://www.youtube.com/@twilio" target="_blank" class="m-share-button"> <span class="name"> <svg viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon--decorative" role="presentation"> <title>Youtube Logo</title> <g class="social_youtube"> <path d="M69.54 18.7C68.74 15.67 66.36 13.28 63.35 12.47C57.89 11 36 11 36 11C36 11 14.11 11 8.65 12.47C5.64 13.28 3.27 15.67 2.46 18.7C1 24.2 1 35.66 1 35.66C1 35.66 1 47.12 2.46 52.62C3.27 55.65 5.64 58.04 8.65 58.85C14.11 60.32 36 60.32 36 60.32C36 60.32 57.89 60.32 63.35 58.85C66.36 58.04 68.73 55.65 69.54 52.62C71 47.13 71 35.66 71 35.66C71 35.66 71 24.2 69.54 18.7ZM28.84 46.07V25.25L47.14 35.66L28.84 46.07Z" fill="black"/> </g> </svg> </span> </a> </li> </ul> </div> <ul class="footer-links" role="list"> <li> <a href="https://www.twilio.com/en-us/legal/tos" target="_self" data-uuid="9729a7d1-cc0b-3ebd-a189-076119e4ab98">Legal</a> </li> <li> <a href="https://www.twilio.com/en-us/legal/privacy" target="_self" data-uuid="8e8dfd08-798f-3880-b221-d1d60eb365d6">Privacy (Updated)</a> </li> <li> <a href="https://www.twilio.org/" target="_self" data-uuid="c371b7c0-5186-3614-abbc-36bd528ce3aa">Twilio.org</a> </li> <li> <a href="/en-us/press" target="_self" data-uuid="d10a25cc-ba5e-3709-aad3-0bdb34ad33e1">Press & Media</a> </li> <li> <a href="https://signal.twilio.com/?_ga=2.112150148.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="1768b82a-ab84-3a05-9e5d-fa4e76e6d898">Signal</a> </li> <li> <a href="https://investors.twilio.com/overview/default.aspx?_ga=2.112150148.1826591240.1667227419-607057990.1661885030" target="_self" data-uuid="7a29f24c-8376-3364-9878-ed412e473c6a">Investors</a> </li> <li> <a href="https://www.twilio.com/en-us/company/jobs" target="_self" data-uuid="9d3679ea-999c-3123-b166-a17769fcdcf6">Jobs</a> </li> </ul> <p class="footer-disclaimer"> <span>Copyright © 2024 Twilio Inc.</span> <span>All Rights Reserved.</span> </p> </div> </div> </div> </footer> <script src="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/jquery.lc-f9e8e8c279baf6a1a278042afe4f395a-lc.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/utils.lc-899004cc02c33efc1f6694b1aee587fd-lc.min.js"></script> <script src="/etc.clientlibs/twilio-foundation/clientlibs/clientlib-site.lc-4bf5653a16031625f5469829ca6ea054-lc.min.js"></script> <script src="/etc.clientlibs/twilio-com/clientlibs/clientlib-dependencies.lc-d41d8cd98f00b204e9800998ecf8427e-lc.min.js"></script> <script src="/etc.clientlibs/twilio-com/clientlibs/clientlib-site.lc-987cb92bb92261932ddaddd4539f6360-lc.min.js"></script> </body> </html>