CINXE.COM
Phone Numbers | Twilio
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"/> <title>Phone Numbers | Twilio</title> <meta name="description" content="Phone numbers for voice and SMS communications provisioned, managed and ported via a developer-friendly API."/> <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/phone-numbers"/> <meta name="twitter:url" content="https://www.twilio.com/en-us/phone-numbers"/> <script defer="defer" type="text/javascript" src="https://rum.hlx.page/.rum/@adobe/helix-rum-js@%5E2/dist/rum-standalone.js" data-routing="program=62254,environment=555373,tier=publish"></script> <link rel="canonical" href="https://www.twilio.com/en-us/phone-numbers"/> <link rel="alternate" href="https://www.twilio.com/en-us/phone-numbers" hreflang="en-us"/> <link rel="alternate" href="https://www.twilio.com/pt-br/phone-numbers" hreflang="pt-br"/> <link rel="alternate" href="https://www.twilio.com/es-mx/phone-numbers" hreflang="es-mx"/> <link rel="alternate" href="https://www.twilio.com/ja-jp/phone-numbers" hreflang="ja-jp"/> <link rel="alternate" href="https://www.twilio.com/fr-fr/phone-numbers" hreflang="fr-fr"/> <link rel="alternate" href="https://www.twilio.com/de-de/phone-numbers" hreflang="de-de"/> <link rel="alternate" href="https://www.twilio.com/en-us/phone-numbers" 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 --> <script> (function(win, doc, style, timeout) { var STYLE_ID = 'at-body-style'; function getParent() { return doc.getElementsByTagName('head')[0]; } function addStyle(parent, id, def) { if (!parent) { return; } var style = doc.createElement('style'); style.id = id; style.innerHTML = def; parent.appendChild(style); } function removeStyle(parent, id) { if (!parent) { return; } var style = doc.getElementById(id); if (!style) { return; } parent.removeChild(style); } addStyle(getParent(), STYLE_ID, style); setTimeout(function() { removeStyle(getParent(), STYLE_ID); }, timeout); }(window, document, "body {opacity: 0 !important}", 1000)); </script> <!-- 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/phone-numbers"/> <meta property="og:title" content="Phone Numbers | Twilio"/> <meta property="og:description" content="Phone numbers for voice and SMS communications provisioned, managed and ported via a developer-friendly API."/> <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/phone-numbers"/> <meta name="twitter:title" content="Phone Numbers | Twilio"/> <meta name="twitter:description" content="Phone numbers for voice and SMS communications provisioned, managed and ported via a developer-friendly API."/> <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-93e74a4b91"> <!-- 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/phone-numbers.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/phone-numbers" data-lang-code="ja-jp"> <span>日本語</span> </a> </li> <li role="menuitem"> <a class href="/de-de/phone-numbers" data-lang-code="de-de"> <span>Deutsch</span> </a> </li> <li role="menuitem"> <a class href="/en-us/phone-numbers" 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/phone-numbers" data-lang-code="es-mx"> <span>Español (México)</span> </a> </li> <li role="menuitem"> <a class href="/fr-fr/phone-numbers" data-lang-code="fr-fr"> <span>Français</span> </a> </li> <li role="menuitem"> <a class href="/pt-br/phone-numbers" 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> <section data-uuid="" class="sub-navigation"> <nav> <button aria-label="Opens subnav on mobile" class="sub-navigation-page">Phone Numbers</button> <div class="sub-navigation-links" aria-hidden="true"> <ul class="sub-navigation-list" role="list"> <li aria-selected="true"> <a href="/en-us/phone-numbers" class="sub-navigation-link" target="_self">Overview</a> </li> <li> <a class="sub-navigation-link" href="/en-us/phone-numbers/toll-free" target="_self">Toll Free</a> <div class="sub-navigation-dropdown" aria-hidden="true"> </div> </li> <li> <a class="sub-navigation-link" href="/en-us/messaging/channels/sms/short-codes" target="_self">Short Code</a> <div class="sub-navigation-dropdown" aria-hidden="true"> </div> </li> <li> <a class="sub-navigation-link" href="/en-us/a2p-10dlc" target="_self">10DLC</a> <div class="sub-navigation-dropdown" aria-hidden="true"> </div> </li> <li> <a class="sub-navigation-link" href="/en-us/guidelines" target="_self">Compliance</a> <div class="sub-navigation-dropdown" aria-hidden="true"> </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/sms/pricing/us" role="menuitem" target="_self">SMS Pricing</a> </li> <li> <a href="/en-us/voice/pricing/us" role="menuitem" target="_self">Voice Pricing</a> </li> </ul> </div> </li> </ul> </div> </nav> </section> <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"> </div> <h1 class="title-extra-large">Twilio phone numbers</h1> <div class="header-badge"> </div> <div class="header-sub-text"> <p class="copy-large">Get instant access to phone numbers in 100+ countries. Twilio has global inventory, APIs, and software for you to engage your customers at scale anywhere in the world.</p> </div> </div> <div data-uuid="1504659736" class="button-container horizontal medium left"> <a class="button button-primary right" href="https://www.twilio.com/try-twilio" target="_self" data-uuid="003796f8-f0b7-3344-83dc-8ec0dbdae578" aria-label="Start for free"> <span class="button-text"> Start for free </span> </a> <a class="button button-tertiary right" href="/en-us/help/sales" target="_self" data-uuid="ce324792-c9fc-3eab-bd50-ec989a32cf53" aria-label="Contact sales"> <span class="button-text"> Contact sales </span> </a> </div> </div> <div class="grid-container-column media-right"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/overview_phone_hero.png/_jcr_content/renditions/compressed-original.webp" alt="UI of a Twilio phone numbers global inventory, APIs, and software for users to engage with their customers at scale anywhere in the world" title="UI of a Twilio phone numbers global inventory, APIs, and software for users to engage with their customers at scale anywhere in the world" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/overview_phone_hero.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </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="-1396196441" class="logo-list brand "> <div class="logo-list-item"> <span aria-label="Stripe logo"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 101 48" class="customer-logo"> <title>Stripe logo</title> <g class="stripe"> <path class="path-fill logo-fill" fill="#635BFF" fill-rule="evenodd" d="M100.031 24.703c0-7.198-3.446-12.877-10.03-12.877-6.614 0-10.615 5.68-10.615 12.82 0 8.464 4.723 12.737 11.503 12.737 3.307 0 5.808-.759 7.697-1.827v-5.623c-1.89.956-4.057 1.546-6.808 1.546-2.695 0-5.085-.956-5.39-4.274h13.587c0-.365.056-1.827.056-2.502Zm-13.727-2.671c0-3.177 1.918-4.499 3.668-4.499 1.695 0 3.501 1.322 3.501 4.499h-7.168ZM68.66 11.826c-2.723 0-4.474 1.293-5.446 2.193l-.361-1.743h-6.114v32.783l6.947-1.49.028-7.957c1 .731 2.473 1.771 4.918 1.771 4.974 0 9.503-4.048 9.503-12.961-.028-8.154-4.613-12.596-9.475-12.596Zm-1.667 19.372c-1.64 0-2.612-.59-3.28-1.322l-.027-10.43c.723-.816 1.723-1.378 3.307-1.378 2.528 0 4.279 2.867 4.279 6.55 0 3.768-1.723 6.58-4.28 6.58ZM47.181 10.167l6.974-1.518V2.94l-6.974 1.49v5.736Z" clip-rule="evenodd"/> <path class="path-fill logo-fill" fill="#635BFF" d="M54.155 12.304h-6.974v24.601h6.974V12.304Z"/> <path class="path-fill logo-fill" fill="#635BFF" fill-rule="evenodd" d="m39.707 14.384-.445-2.08H33.26v24.601h6.947V20.232c1.64-2.165 4.418-1.771 5.28-1.462v-6.466c-.89-.338-4.14-.956-5.78 2.08ZM25.813 6.203l-6.78 1.462-.027 22.52c0 4.162 3.084 7.227 7.196 7.227 2.279 0 3.946-.422 4.863-.928v-5.708c-.89.366-5.28 1.66-5.28-2.502v-9.981h5.28v-5.99h-5.28l.028-6.1ZM7.03 19.445c0-1.096.89-1.518 2.362-1.518 2.112 0 4.779.647 6.89 1.8v-6.608c-2.306-.928-4.584-1.293-6.89-1.293-5.64 0-9.392 2.98-9.392 7.957 0 7.76 10.559 6.523 10.559 9.868 0 1.294-1.112 1.716-2.668 1.716-2.306 0-5.251-.956-7.585-2.25v6.692a19.069 19.069 0 0 0 7.585 1.603c5.78 0 9.753-2.896 9.753-7.93-.027-8.378-10.614-6.888-10.614-10.037Z" clip-rule="evenodd"/> </g> </svg> </span> </div> <div class="logo-list-item"> <span aria-label="Bitso logo"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 145 50" class="customer-logo"> <title>Bitso logo</title> <g class="bitso"> <path fill="#191E23" fill-rule="evenodd" d="M23.467 33.563a.822.822 0 0 0-.862-.823c-.783.04-1.904.072-2.667.072-4.56 0-8.258-3.703-8.258-8.272V4.81a.296.296 0 0 0-.296-.296H.184A.183.183 0 0 0 0 4.697V24.54c.015 11.033 8.946 19.974 19.964 19.974 1.11 0 2.196-.096 3.256-.272a.297.297 0 0 0 .247-.293V33.563ZM19.965 4.514c-1.123 0-2.222.098-3.294.278a.299.299 0 0 0-.246.295v10.41c0 .469.385.893.845.847.459-.045 2.669-.076 2.669-.076 4.56 0 8.257 3.703 8.257 8.272h.015v18.03a.1.1 0 0 0 .143.091c6.834-3.175 11.576-10.104 11.576-18.147 0-11.046-8.939-20-19.965-20Zm115.123 11.522c-7.366 0-10.619 4.984-10.619 11.735 0 6.633 3.879 10.637 9.952 10.637 7.366 0 10.579-4.907 10.579-11.579 0-6.672-3.8-10.793-9.912-10.793Zm2.45 16.68c-.823.55-1.723.864-2.978.864-2.468 0-3.956-2.12-3.956-5.926 0-2.12.43-4.004 1.136-4.985.823-.628 1.762-.942 2.978-.942 2.624 0 3.917 2.158 3.917 5.298 0 2.356-.392 4.436-1.097 5.692Zm-23.092-7.574c-3.214-.55-3.958-.942-3.958-1.924 0-.47.158-.902.392-1.177.823-.275 2.076-.432 3.369-.432 2.547 0 4.819.392 6.7.981v-5.102c-1.449-.746-3.839-1.452-7.17-1.452-5.642 0-9.168 2.669-9.168 7.221 0 4.357 2.585 5.691 7.326 6.555 3.488.667 4.231 1.02 4.231 2.08 0 .472-.117.825-.312 1.06-.862.314-2.077.51-3.839.51-2.352 0-5.133-.51-6.818-1.098v4.984c1.762.706 4.544 1.06 7.013 1.06 5.995 0 9.873-1.883 9.873-6.712 0-4.121-2.546-5.613-7.639-6.554Zm-45.52-1.021c1.997-1.178 3.721-3.1 3.721-5.848 0-4.671-3.605-7.143-11.127-7.143H50.706v26.886h12.577c6.7 0 10.109-2.552 10.109-7.615 0-3.376-1.96-5.259-4.466-6.28Zm-11.637-7.85c1.057-.04 2.35-.079 3.84-.079 3.447 0 4.975 1.02 4.975 3.258 0 1.256-.47 2.159-1.645 2.983-.902.196-1.96.314-3.213.314-1.489 0-2.9-.039-3.957-.078V16.27Zm8.385 17.034c-.863.236-2.312.314-3.527.314-1.998 0-3.683-.039-4.858-.078v-6.24h4.662c3.37 0 4.78.98 4.78 3.218 0 1.099-.392 2.001-1.057 2.786Zm12.095 4.71h6.347V16.428h-6.347v21.587ZM95.813 11.09l-6.075.472v20.37c0 4.003 1.842 6.437 6.465 6.437 1.96 0 3.527-.353 4.859-.942v-4.985c-1.293.471-2.43.706-3.643.706-1.059 0-1.606-.589-1.606-1.57V21.452h5.132v-5.024h-5.132V11.09Zm-11.698 1.65V7.36l-6.346.471v4.907h6.346Z" class="logo-fill" clip-rule="evenodd"/> </g> </svg> </span> </div> <div class="logo-list-item"> <span aria-label="Deliveroo logo"> <svg width="152" height="48" viewBox="0 0 152 48" fill="none" xmlns="http://www.w3.org/2000/svg" class="customer-logo"> <title>Deliveroo logo</title> <path class="path-fill logo-fill" fill-rule="evenodd" clip-rule="evenodd" d="M95.6496 21.1914H99.2625L95.7987 34.116H90.4681L87.0042 21.1914H90.5687L93.1095 31.6614L95.6496 21.1914ZM85.6578 17.3067C85.6578 18.5094 84.7601 19.4113 83.5904 19.4113H83.5912C82.3945 19.4113 81.4969 18.5101 81.4969 17.3075C81.4969 16.1056 82.3945 15.2036 83.5912 15.2036C84.7609 15.2036 85.6578 16.1048 85.6578 17.3067ZM81.9219 34.116H85.2335V21.1914H81.9219V34.116ZM145.374 30.9098C143.457 30.9098 142.036 29.6323 142.036 27.6533C142.036 25.6497 143.457 24.3977 145.374 24.3977C147.317 24.3977 148.712 25.6497 148.712 27.6533C148.712 29.6323 147.317 30.9098 145.374 30.9098ZM145.375 20.9162C141.611 20.9162 138.822 23.6461 138.822 27.6533C138.822 31.6614 141.612 34.3913 145.374 34.3913C149.136 34.3913 151.926 31.6614 151.926 27.6533H151.927C151.927 23.6461 149.136 20.9162 145.375 20.9162ZM75.6437 15.4549H78.9561V34.116H75.6437V34.1153V15.4549ZM103.447 26.4754C103.821 24.9975 104.942 24.1965 106.636 24.1965C108.355 24.1965 109.476 24.9975 109.825 26.4754H103.447ZM106.634 20.9154C102.898 20.9154 100.158 23.6191 100.158 27.6526C100.158 31.7601 102.874 34.3897 107.084 34.3897V34.3913C108.927 34.3905 110.746 33.8902 112.266 32.9134L110.995 30.0563C109.798 30.6839 108.478 31.0585 107.132 31.0585C105.39 31.0585 104.169 30.3832 103.645 29.1297H112.963C113.063 28.654 113.112 28.1783 113.112 27.6025C113.112 23.5952 110.346 20.9154 106.634 20.9154ZM124.423 21.543L122.853 25.073C122.28 24.6722 121.657 24.4995 120.985 24.4995L120.985 24.4987H120.983V24.4972C119.887 24.4972 119.04 25.0222 118.591 25.8748V34.1145H115.28V23.7201L114.731 21.1906H118.145L118.494 22.8196C119.291 21.5653 120.536 20.8915 122.031 20.8915C122.853 20.8915 123.699 21.0904 124.423 21.543ZM130.701 30.9098H130.7C128.783 30.9098 127.362 29.6323 127.362 27.6533C127.362 25.6497 128.783 24.3977 130.7 24.3977C132.643 24.3977 134.039 25.6497 134.039 27.6533C134.039 29.6323 132.644 30.9098 130.701 30.9098ZM130.7 20.9162C126.937 20.9162 124.148 23.6461 124.148 27.6533C124.148 31.6614 126.938 34.3913 130.699 34.3913H130.7H130.7C134.462 34.3913 137.251 31.6614 137.251 27.6533C137.251 23.6461 134.462 20.9162 130.7 20.9162ZM63.8112 26.4754C64.1855 24.9975 65.306 24.1965 66.9991 24.1965C68.7183 24.1965 69.8396 24.9975 70.1886 26.4754H63.8112ZM67.0591 20.88C63.3224 20.88 60.5826 23.5852 60.5826 27.6171C60.5826 31.7254 63.2978 34.355 67.5087 34.355H67.5071H67.5056C69.3508 34.355 71.1692 33.8539 72.6886 32.8772L71.419 30.0224C70.2224 30.6484 68.902 31.0238 67.5571 31.0238C65.8148 31.0238 64.5936 30.3477 64.0694 29.095H73.3865C73.4864 28.6201 73.5371 28.1437 73.5371 27.5678C73.5371 23.5605 70.7711 20.88 67.0591 20.88ZM25.9921 30.5042H25.9898H25.989C25.6039 31.1688 24.5918 31.2567 23.5973 30.7733C22.9264 30.4472 22.931 29.6177 23.0047 29.1119C23.0439 28.836 23.1554 28.5761 23.3291 28.3564C23.5689 28.0565 23.9685 27.6641 24.4312 27.651C25.1828 27.631 25.8291 27.9656 26.195 28.5708C26.5616 29.1736 26.3786 29.8397 25.9921 30.5042ZM18.5434 29.6724H18.5418V29.6732L18.5426 29.674C18.0115 30.1558 17.3106 30.1118 16.5674 29.8659C15.8243 29.6215 15.4946 28.7296 15.7751 27.6526C15.9849 26.8524 16.9717 26.7329 17.4659 26.7251C17.6526 26.7213 17.8371 26.7591 18.0077 26.8354C18.3566 26.9919 18.9476 27.3265 19.0675 27.8368C19.2397 28.5723 19.0737 29.1906 18.5434 29.6724ZM24.7724 21.6023L21.5361 6.50291L11.3921 8.64301L14.6261 23.7409L0 26.8254L2.58307 38.885L28.3038 44.307L34.1862 31.2027L36.986 4.76986L26.6691 3.69287L24.7724 21.6023ZM51.752 30.9098C49.8337 30.9098 48.4135 29.6323 48.4135 27.6533C48.4135 25.6497 49.833 24.3977 51.7513 24.3977C53.6957 24.3977 55.089 25.6497 55.089 27.6533C55.089 29.6323 53.6957 30.9098 51.752 30.9098ZM58.3792 31.4355V15.4565H55.0667V22.7456C54.0684 21.5931 52.6981 20.9177 51.0803 20.9177C47.7656 20.9177 45.2002 23.6468 45.2002 27.6549C45.2002 31.6622 47.7656 34.392 51.0796 34.392C52.7242 34.392 54.1445 33.6913 55.1421 32.4886L55.4894 34.116H58.9525L58.3792 31.4355Z" fill="#35B8B2"/> </svg> </span> </div> <div class="logo-list-item"> <span aria-label="Mercado Libre logo"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 137 48" class="customer-logo"> <title>Mercado Libre logo</title> <g class="mercado-libre"> <path class="class-fill logo-fill" fill="#FFE700" d="M25.856 40.615c13.72 0 24.842-7.49 24.842-16.73S39.576 7.155 25.856 7.155c-7.582 0-14.37 2.287-18.927 5.894l3.21 1.204 5.577 1.014 5.07-1.014 6.084-2.028 5.576 2.027 7.605.507 4.563-1.52 4.563 5.07 1.014 3.548L39.544 24.9v2.028l-1.014 1.52h-1.014l-1.014 1.015-1.52 2.028-2.029-.507-1.013 2.028-2.028.507-1.014.507-3.042-.507-1.521.507H23.32l-1.014-.507-1.014-1.014-2.535-.507-1.014-1.014-2.028-.507-1.014-1.521-1.52-.507-1.015-1.014v-1.521l-2.534-2.028-8.353-2.457a11.487 11.487 0 0 0-.266 2.457c0 9.24 11.122 16.73 24.842 16.73Z" opacity=".8"/> <path class="class-fill logo-fill" fill="#252E7C" d="M50.849 23.276c0-9.133-11.378-16.611-25.425-16.611C11.378 6.665 0 14.143 0 23.276v.962c0 9.72 9.935 17.574 25.424 17.574 15.544 0 25.425-7.85 25.425-17.573v-.963Zm-.908 0c0 8.601-10.948 15.596-24.41 15.596-13.463 0-24.409-6.995-24.409-15.596 0-8.6 10.949-15.595 24.408-15.595 13.46 0 24.411 6.994 24.411 15.595Zm8.6.497h.747V38.73h-2.831V25.593c0-.427.907-1.819 2.084-1.819Zm15.49 3.313c-1.39 0-2.457.587-3.204 1.764v-5.077h-.321c-1.389 0-2.136.748-2.511 1.39v-.107 8.601c0 3.364 1.764 5.074 5.288 5.074 3.525-.055 5.234-1.976 5.234-5.715 0-3.9-1.495-5.824-4.487-5.93Zm-.857 9.188c-1.603 0-2.405-1.174-2.35-3.419.105-2.19.853-3.258 2.401-3.258 1.55 0 2.297 1.068 2.403 3.258.003 2.297-.85 3.419-2.454 3.419Zm6.998-3.419c.106-3.633 1.87-5.66 5.66-5.66h.853v2.938H85.35c-1.604 0-2.296 1.013-2.296 2.671v5.875h-2.883v-5.824Zm11.003 2.938c.48.426 1.975.641 1.975.641s1.122-.16 1.549-.48c.427-.321.696-.642.802-.963h2.671c-.426 1.334-1.068 2.245-1.975 2.832-.908.587-1.925.853-3.204.853-.853 0-1.655-.16-2.35-.427-.697-.266-1.284-.695-1.764-1.173a5.829 5.829 0 0 1-1.123-1.815c-.266-.696-.375-1.495-.375-2.351 0-.802.16-1.603.426-2.296.266-.696.642-1.334 1.123-1.815.48-.536 1.068-.908 1.764-1.229.695-.32 1.443-.426 2.296-.426.907 0 1.764.16 2.456.536.696.375 1.283.852 1.71 1.443.426.59.747 1.282.962 2.084.215.747.266 1.604.215 2.457h-7.96c.109 1.007.375 1.703.802 2.129Zm3.418-5.77c-.375-.375-.907-.586-1.655-.586-.48 0-.907.106-1.228.266-.32.16-.587.375-.747.587a2.62 2.62 0 0 0-.427.747c-.105.266-.105.536-.16.747h4.913c-.054-.798-.32-1.385-.696-1.76Zm-32.261-6.25h2.831v2.563h-2.831v-2.563Zm0 3.849h2.831v11.057h-2.831V27.622Zm70.915-9.775a2.497 2.497 0 0 1-1.924.853c-.802 0-1.443-.32-1.924-.853-.481-.536-.641-1.443-.641-2.51 0-1.123.215-1.925.641-2.457a2.497 2.497 0 0 1 1.924-.854c.802 0 1.443.321 1.924.854.481.535.642 1.443.642 2.456s-.161 1.87-.642 2.511Zm2.245-6.625c-.853-1.123-2.296-1.764-4.166-1.764-1.815 0-3.312.535-4.165 1.764-.853 1.122-1.389 2.51-1.389 4.06 0 1.603.481 2.992 1.389 4.06.853 1.122 2.296 1.709 4.165 1.709 1.816 0 3.313-.536 4.166-1.71.853-1.122 1.389-2.51 1.389-4.06.051-1.494-.43-2.883-1.389-4.06Zm-13.889 6.625c-.375.536-1.013.853-1.815.853s-1.443-.32-1.764-.853c-.375-.641-.535-1.443-.535-2.51 0-.963.16-1.71.535-2.297.375-.641.962-.962 1.815-.962.536 0 1.014.16 1.443.48.642.536 1.014 1.604 1.014 2.993-.157.959-.266 1.76-.693 2.296Zm3.313-11.644s-2.883-.32-2.883 1.975v3.044c-.321-.481-.696-.853-1.283-1.229-.481-.32-1.122-.375-1.764-.375-1.443 0-2.562.536-3.473 1.604-.853 1.013-1.283 2.562-1.283 4.486 0 1.603.376 2.992 1.283 3.9.853 1.013 2.562 1.443 4.06 1.443 5.288 0 5.182-4.487 5.182-4.487l.161-10.361ZM110.709 16.51c0 .962-.321 1.603-.802 1.975-.535.321-1.122.536-1.709.536-.375 0-.696-.055-.962-.32-.266-.267-.375-.536-.375-1.014 0-.536.215-.962.641-1.229.215-.16.696-.32 1.283-.375l.641-.16c.321-.055.536-.16.802-.16.16-.055.375-.16.536-.215l-.055.962Zm1.44-6.247c-.962-.481-1.975-.696-3.204-.696-1.815 0-3.152.48-3.899 1.443-.481.641-.696 1.389-.802 2.296h2.723c.054-.375.215-.696.375-.962.321-.32.802-.481 1.443-.481s1.013.055 1.389.215c.32.16.481.48.481.962 0 .375-.215.641-.642.802a8.48 8.48 0 0 1-1.122.214l-.962.055c-1.123.16-1.924.375-2.511.696-1.014.535-1.549 1.603-1.549 2.883 0 1.013.32 1.815.962 2.405.641.536 1.443.802 2.456.853 6.251.215 6.196-3.313 6.196-4.005V12.88c.055-1.177-.372-2.14-1.334-2.617Zm-14.155 1.76c.696 0 1.228.215 1.603.642.215.32.375.696.375 1.122h3.044c-.161-1.549-.696-2.671-1.604-3.204-.853-.641-2.084-.853-3.524-.853-1.71 0-3.044.481-4.006 1.55-.962 1.067-1.443 2.51-1.443 4.325 0 1.71.376 2.992 1.283 4.006.853 1.013 2.245 1.549 4.06 1.549 1.815 0 3.204-.642 4.166-1.815.535-.802.853-1.604.962-2.511h-3.047c-.054.535-.215 1.013-.535 1.388-.32.321-.802.536-1.55.536-.961 0-1.708-.481-1.975-1.389a5.982 5.982 0 0 1-.32-1.924c0-.802.054-1.549.32-1.975.485-.966 1.123-1.447 2.19-1.447Zm-6.356-2.402c-6.357 0-5.93 5.61-5.93 5.61v5.66h2.883v-5.289c0-.853.055-1.549.32-1.924.376-.696 1.123-1.122 2.297-1.122h.32c.16 0 .321 0 .482.054V9.727h-.215c-.048-.106-.048-.106-.157-.106ZM77.325 12.56c.375-.375.962-.641 1.71-.641.64 0 1.228.16 1.709.535.48.375.696.962.696 1.71h-4.913c.157-.642.372-1.178.798-1.604Zm3.845 5.288a.655.655 0 0 1-.375.375c-.375.321-.962.375-1.603.375-.642 0-1.123-.054-1.55-.375-.695-.375-1.122-1.228-1.122-2.245h7.905c0-.962 0-1.709-.054-2.135-.16-.853-.375-1.604-.853-2.245-.481-.696-1.123-1.283-1.815-1.604-.693-.32-1.604-.48-2.563-.48-1.603 0-2.883.48-3.845 1.548-.962 1.014-1.549 2.457-1.549 4.326 0 1.976.536 3.473 1.71 4.326 1.122.854 2.401 1.39 3.845 1.39 1.763 0 3.152-.536 4.06-1.604.535-.536.853-1.123.962-1.71l-3.153.058Zm-8.652 2.989h-2.671v-6.568c0-.641-.16-1.975-1.924-1.975-1.123 0-1.976.802-1.976 1.975v6.571h-2.671v-6.57c0-.642-.16-1.976-1.925-1.976-1.122 0-1.924.802-1.924 1.975v6.571h-2.671v-6.52c0-2.722 1.764-4.807 4.541-4.807 1.389 0 2.511.536 3.313 1.55.802-.963 1.924-1.55 3.313-1.55 2.882 0 4.54 1.976 4.54 4.807l.055 6.517Zm-33.42 4.095c-2.404-2.081-7.959-6.943-9.508-8.065-.853-.642-1.443-1.014-1.975-1.123-.215-.054-.536-.16-.962-.16-.375 0-.802.054-1.229.215-.962.32-1.924 1.068-2.883 1.815l-.054.055c-.853.695-1.764 1.388-2.457 1.549-.32.054-.587.105-.907.105-.747 0-1.443-.215-1.71-.535-.054-.055 0-.16.106-.267l2.136-2.296c1.655-1.654 3.204-3.203 6.837-3.312h.16c2.245 0 4.487 1.013 4.753 1.122 2.136 1.013 4.272 1.549 6.462 1.549 2.296 0 4.797-.715 7.254-1.837-.266-.215-.587-.481-.853-.696-2.19.962-4.37 1.516-6.4 1.516-2.03 0-4.06-.48-6.036-1.443-.106-.054-2.563-1.228-5.183-1.228h-.214c-3.044.055-4.753 1.123-5.875 2.085-1.123 0-2.085.32-2.938.535-.747.215-1.443.375-2.085.375h-.801c-.747 0-4.487-.907-7.424-2.084-.32.215-.587.426-.908.641 3.098 1.283 6.892 2.245 8.066 2.35.32 0 .695.055 1.067.055.802 0 1.55-.215 2.351-.426.481-.106.962-.266 1.443-.375l-.426.426-2.133 2.35c-.16.161-.535.642-.32 1.175.105.215.32.426.586.641.536.32 1.444.587 2.296.587.321 0 .642-.055.908-.106.908-.215 1.87-.962 2.832-1.764.801-.641 1.924-1.443 2.777-1.71.266-.054.536-.105.802-.105h.215c.586.055 1.122.266 2.135 1.013 1.764 1.335 9.615 8.172 9.67 8.226 0 0 .48.427.48 1.174 0 .375-.266.747-.641 1.013a1.88 1.88 0 0 1-1.014.321c-.535 0-.907-.266-.907-.266s-2.726-2.453-3.688-3.306c-.16-.16-.32-.267-.481-.267-.106 0-.16.055-.215.106-.16.215 0 .481.215.642l3.152 3.152s.376.375.427.853c0 .535-.215.962-.747 1.283a1.892 1.892 0 0 1-1.123.375c-.48 0-.801-.215-.907-.266l-.481-.427c-.802-.802-1.655-1.654-2.297-2.136-.16-.105-.32-.266-.48-.266-.055 0-.16 0-.215.106-.055.055-.106.215.054.481.055.106.16.16.16.16l2.297 2.563s.48.587.054 1.068l-.106.106-.215.214c-.375.321-.907.376-1.122.376h-.32c-.216-.055-.376-.106-.482-.215-.106-.16-1.283-1.283-2.245-2.085-.105-.106-.266-.215-.426-.215a.422.422 0 0 0-.215.106c-.16.215.106.536.215.642l1.975 2.135s0 .055-.054.16c-.055.107-.32.322-1.014.427h-.266c-.747 0-1.494-.375-1.924-.587.16-.375.266-.801.266-1.228A2.87 2.87 0 0 0 23.5 29.1h-.105c.054-.747-.055-2.136-1.495-2.723-.426-.16-.802-.266-1.228-.266-.32 0-.587.055-.908.16a2.531 2.531 0 0 0-1.443-1.228 3.75 3.75 0 0 0-1.068-.16 2.52 2.52 0 0 0-1.603.536 2.458 2.458 0 0 0-1.924-.908 2.46 2.46 0 0 0-1.71.696c-.587-.481-2.992-1.976-9.454-3.473-.32-.055-1.013-.266-1.443-.427-.054.321-.106.696-.16 1.068 0 0 1.174.266 1.443.321 6.571 1.443 8.761 2.992 9.133 3.258a3.05 3.05 0 0 0-.16.962 2.45 2.45 0 0 0 2.456 2.457c.16 0 .321 0 .482-.055.214 1.014.852 1.764 1.87 2.136.32.106.586.16.852.16.16 0 .375 0 .587-.054.16.48.587 1.068 1.549 1.443.32.16.641.215.962.215.266 0 .536-.055.747-.16a2.909 2.909 0 0 0 2.672 1.815c.801 0 1.549-.321 2.084-.908.481.266 1.443.747 2.457.747h.375c1.013-.106 1.443-.535 1.655-.802.054-.054.054-.105.105-.16.215.055.481.106.802.106.536 0 1.068-.16 1.604-.587.535-.375.907-.907.907-1.388.16.054.375.054.536.054.535 0 1.122-.16 1.654-.535 1.014-.642 1.174-1.55 1.174-2.085.16.054.375.054.536.054a2.78 2.78 0 0 0 1.549-.48c.641-.427 1.013-1.014 1.068-1.71.054-.48-.106-.962-.321-1.388 1.71-.748 5.613-2.146 10.21-3.213 0-.376-.056-.696-.161-1.068-5.5 1.17-9.674 2.94-10.687 3.421Zm-15.437 8.922c-1.068 0-1.925-.853-1.976-1.924 0-.106 0-.321-.215-.321-.105 0-.16.055-.266.106-.215.215-.535.426-.962.426a1.43 1.43 0 0 1-.641-.16c-1.123-.481-1.174-1.228-1.123-1.549 0-.106 0-.16-.054-.215l-.055-.054h-.054c-.055 0-.106 0-.215.105-.32.215-.642.321-.962.321a1.96 1.96 0 0 1-.536-.106c-1.494-.587-1.388-1.975-1.283-2.405 0-.106 0-.16-.054-.215l-.106-.105-.106.105c-.32.267-.696.427-1.068.427a1.552 1.552 0 0 1-1.549-1.55c0-.852.696-1.548 1.55-1.548.747 0 1.442.587 1.548 1.334l.055.427.215-.376c0-.054.641-1.013 1.815-.962.215 0 .426.055.696.106.907.266 1.068 1.123 1.068 1.443 0 .215.16.215.16.215.055 0 .16-.055.16-.106.16-.16.536-.48 1.123-.48.266 0 .535.054.853.214 1.443.641.802 2.456.802 2.511-.106.32-.16.427 0 .536h.105c.055 0 .16 0 .267-.055.214-.054.48-.16.747-.16 1.068 0 1.975.907 1.975 1.975a1.9 1.9 0 0 1-1.914 2.04Z" /> </g> </svg> </span> </div> <div class="logo-list-item"> <span aria-label="Shopify logo"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 106 48" class="customer-logo"> <title>Shopify logo</title> <g class="shopify"> <path fill="#316908" d="M22.526 14.453c-.107-.01-2.206-.041-2.206-.041s-1.755-1.705-1.928-1.878a.429.429 0 0 0-.244-.112v26.07l7.865-1.955s-3.209-21.695-3.229-21.844a.287.287 0 0 0-.258-.24Z" class="path-fill logo-fill" opacity=".7"/> <path class="path-fill logo-fill" fill="#94BE46" d="M22.72 14.551a.298.298 0 0 0-.195-.1 229.35 229.35 0 0 0 0 .002.3.3 0 0 1 .194.098Z"/> <path class="path-fill logo-fill" fill="#94BE46" fill-rule="evenodd" d="m22.49 37.413-4.341 1.079v-26.07c.081.012.16.04.222.093-.178-.151-.497-.101-.624-.064l-.504.157-.377.117a6.18 6.18 0 0 0-.422-1.037c-.625-1.193-1.54-1.823-2.646-1.825h-.004c-.069 0-.136.006-.205.012l-.025.002a3.296 3.296 0 0 0-.1-.115c-.481-.515-1.098-.767-1.839-.744-1.427.04-2.85 1.072-4.003 2.903-.81 1.29-1.428 2.909-1.603 4.162l-1.347.417-1.465.454c-.827.26-.853.285-.961 1.066C2.166 18.61 0 35.354 0 35.354l18.147 3.139 4.342-1.08Zm-6.533-24.407-1.408.436c-.01-.723-.096-1.729-.433-2.598 1.083.205 1.616 1.43 1.841 2.162Zm-2.357.73-3.03.938c.293-1.121.848-2.237 1.53-2.97.253-.272.608-.575 1.029-.748.395.824.48 1.991.47 2.78Zm-1.946-3.768c.335-.008.617.066.859.225-.386.2-.76.488-1.11.863-.906.973-1.601 2.484-1.878 3.941l-1.081.335-1.408.435c.492-2.293 2.414-5.735 4.618-5.8Zm2.135 8.528-.914 3.418s-1.019-.464-2.227-.388c-1.771.112-1.79 1.23-1.772 1.51.038.604.69 1.021 1.477 1.526 1.205.773 2.73 1.75 2.866 3.916.178 2.816-1.494 4.743-3.902 4.895-2.89.183-4.482-1.522-4.482-1.522l.612-2.606s1.602 1.209 2.885 1.128c.837-.053 1.136-.735 1.106-1.216-.055-.874-.715-1.342-1.456-1.868-.95-.675-2.035-1.444-2.151-3.284-.174-2.757 1.636-5.55 5.631-5.802 1.539-.1 2.327.293 2.327.293Z" clip-rule="evenodd"/> <path fill="#000" d="M36.37 25.652c-.904-.49-1.37-.904-1.37-1.472 0-.724.647-1.189 1.655-1.189 1.173 0 2.221.491 2.221.491l.827-2.532s-.76-.595-2.997-.595c-3.113 0-5.27 1.783-5.27 4.29 0 1.42 1.007 2.506 2.35 3.28 1.086.62 1.474 1.06 1.474 1.705 0 .672-.543 1.214-1.55 1.214-1.502 0-2.92-.775-2.92-.775l-.878 2.532s1.31.879 3.514.879c3.203 0 5.503-1.576 5.503-4.418 0-1.524-1.163-2.609-2.559-3.41Zm12.763-5.322c-1.576 0-2.816.75-3.771 1.886l-.052-.026 1.369-7.157h-3.566l-3.461 18.215h3.565l1.189-6.226c.464-2.352 1.678-3.798 2.816-3.798.8 0 1.11.543 1.11 1.318a8.18 8.18 0 0 1-.154 1.576l-1.343 7.13H50.4l1.394-7.363c.155-.775.26-1.705.26-2.325-.002-2.016-1.062-3.23-2.922-3.23Zm10.98 0c-4.289 0-7.13 3.876-7.13 8.19 0 2.764 1.705 4.986 4.909 4.986 4.211 0 7.053-3.772 7.053-8.19 0-2.557-1.499-4.986-4.832-4.986Zm-1.756 10.438c-1.215 0-1.732-1.033-1.732-2.325 0-2.041 1.06-5.374 2.998-5.374 1.266 0 1.678 1.085 1.678 2.145 0 2.195-1.058 5.554-2.944 5.554ZM74.065 20.33c-2.407 0-3.772 2.119-3.772 2.119h-.052l.207-1.912h-3.152a76.296 76.296 0 0 1-.723 4.728l-2.48 13.046h3.565l.981-5.27h.079s.731.465 2.092.465c4.186 0 6.924-4.289 6.924-8.63 0-2.401-1.06-4.546-3.669-4.546Zm-3.41 10.49c-.926 0-1.474-.517-1.474-.517l.595-3.333c.413-2.222 1.576-3.695 2.816-3.695 1.085 0 1.421 1.008 1.421 1.964 0 2.3-1.37 5.58-3.358 5.58Zm12.168-15.606c-1.136 0-2.04.905-2.04 2.067 0 1.06.671 1.783 1.679 1.783h.051c1.112 0 2.067-.75 2.093-2.067 0-1.033-.697-1.783-1.783-1.783Zm-4.985 18.034h3.564l2.43-12.633H80.24l-2.402 12.633ZM92.9 20.589h-2.48l.128-.595c.207-1.214.93-2.3 2.12-2.3.633 0 1.136.182 1.136.182l.697-2.79s-.62-.31-1.938-.31c-1.266 0-2.53.361-3.487 1.188-1.215 1.033-1.783 2.531-2.067 4.03l-.103.595h-1.654l-.517 2.687h1.654l-1.886 9.973h3.566l1.886-9.973h2.454l.491-2.687Zm8.577.026s-2.229 5.615-3.23 8.68h-.052c-.067-.987-.878-8.68-.878-8.68h-3.746l2.145 11.6c.052.257.026.413-.078.594-.414.8-1.11 1.576-1.938 2.145-.671.49-1.42.8-2.014 1.007l.981 3.023c.724-.155 2.222-.75 3.488-1.938 1.628-1.524 3.126-3.875 4.676-7.08l4.366-9.352h-3.72Z" class="path-fill logo-fill"/> </g> </svg> </span> </div> </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"> Types of business phone numbers </h2> <p class="copy-medium dark-text"> Choose from Twilio’s extensive inventory of business phone numbers to reach customers. </p> </div> </div> </div> <div id="" class="grid-container two-columns slim medium-gap ignore-margin" style=""> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-tight 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" role="presentation"> <title>Chat bubble with clock</title> <g class="messaging_chat-bubble--clock"> <path class="path-fill fill-path" fill-rule="evenodd" d="M6.154 8.389a1.71 1.71 0 0 0-1.71 1.7v32.919c0 .448.18.88.5 1.2.32.319.755.499 1.21.499h7.363c1.089 0 1.972.883 1.972 1.972v7.077l4.2-3.141.01-.007 5.88-4.456a1.972 1.972 0 0 1 2.382 3.144l-5.9 4.47-7.363 5.508a1.972 1.972 0 0 1-3.154-1.58v-9.043h-5.39a5.659 5.659 0 0 1-3.996-1.65A5.639 5.639 0 0 1 .5 43.007v-32.92c0-1.498.597-2.934 1.658-3.992a5.659 5.659 0 0 1 3.996-1.652h47.859a5.66 5.66 0 0 1 3.996 1.652 5.64 5.64 0 0 1 1.658 3.992v12.3a1.972 1.972 0 0 1-3.945 0v-12.3c0-.449-.179-.88-.499-1.2-.32-.319-.755-.5-1.21-.5H6.153ZM52.27 33.042c-8.442 0-15.285 6.843-15.285 15.284 0 8.442 6.843 15.285 15.285 15.285 8.441 0 15.285-6.843 15.285-15.285 0-8.441-6.844-15.284-15.285-15.284ZM33.04 48.326c0-10.62 8.61-19.229 19.23-19.229 10.62 0 19.229 8.61 19.229 19.23 0 10.62-8.61 19.229-19.23 19.229-10.62 0-19.228-8.61-19.228-19.23Z" clip-rule="evenodd"/> <path class="path-fill fill-path" fill-rule="evenodd" d="M52 38a2 2 0 0 1 2 2v8h7a2 2 0 0 1 0 4h-9a2 2 0 0 1-2-2V40a2 2 0 0 1 2-2Z" clip-rule="evenodd"/> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://www.twilio.com/en-us/a2p-10dlc" target="_self"> 10DLC </a> </h5> <p>10-digit long codes (A2P 10DLC) are numbers with a local prefix and sent over dedicated business messaging routes.</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" role="presentation"> <title>Mobile notification</title> <g class="phones_mobile--notification"> <g class="fill-path"> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M49.416 70h-28.18c-3.92 0-7.11-3.39-7.11-7.57V9.57c0-4.18 3.19-7.57 7.11-7.57h28.19c3.92 0 7.11 3.39 7.11 7.57v1.61c0 1.1-.9 2-2 2s-2-.9-2-2V9.57c0-1.97-1.39-3.57-3.11-3.57h-28.19c-1.71 0-3.11 1.6-3.11 3.57v45.76h34.4V52.5c0-1.1.9-2 2-2s2 .9 2 2v9.93c0 4.17-3.19 7.57-7.11 7.57Zm-31.29-10.67v3.1c0 1.97 1.39 3.57 3.11 3.57h28.19c1.71 0 3.11-1.6 3.11-3.57v-3.1h-34.41Z"/> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M35.497 14.48c.64 0 1.25-.26 1.7-.71.41-.41.66-.97.7-1.55v-.16c0-.64-.25-1.26-.71-1.71-.45-.45-1.07-.71-1.71-.71-.64 0-1.26.25-1.71.71-.45.45-.71 1.07-.71 1.71 0 .64.25 1.26.71 1.71.45.45 1.06.7 1.7.71h.03Z"/> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M34.127 46.12H44.13A2 2 0 0 0 46.126 48h2a2 2 0 0 0 1.997-1.88h9.424c1.1 0 2-.9 2-2s-.9-2-2-2c-.42 0-.82-.17-1.13-.49-.32-.33-.5-.79-.5-1.27v-7.53c0-3.03-1.14-5.89-3.22-8.04-2.07-2.14-4.93-3.37-7.86-3.37-2.93 0-5.8 1.23-7.86 3.37-2.08 2.15-3.22 5.01-3.22 8.04v7.53c0 .47-.18.94-.5 1.27-.31.32-.71.49-1.13.49-1.1 0-2 .9-2 2s.9 2 2 2Zm20.05-4h-14.7c.18-.56.27-1.15.27-1.76v-7.53c0-1.97.77-3.89 2.1-5.27 1.34-1.39 3.1-2.15 4.98-2.15 1.88 0 3.65.77 4.98 2.15 1.34 1.39 2.1 3.31 2.1 5.27v7.53c0 .6.09 1.2.27 1.76Z"/> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M69.376 29.66c.14.03.268.04.397.04h-.007.01-.002a2.007 2.007 0 0 0 1.953-1.61c.68-3.38.08-6.82-1.68-9.67-1.76-2.85-4.6-4.86-7.8-5.5-1.09-.22-2.14.49-2.36 1.57-.21 1.09.49 2.14 1.57 2.36 2.15.43 3.99 1.74 5.19 3.68 1.21 1.95 1.63 4.42 1.16 6.77-.21 1.09.49 2.14 1.57 2.36Z"/> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M63.127 29.57c.138.03.267.04.396.04h-.007.01-.003A2.007 2.007 0 0 0 65.477 28c.42-2.1 0-4.23-1.18-6.01a7.932 7.932 0 0 0-5.08-3.41c-1.09-.22-2.14.48-2.36 1.56-.21 1.09.49 2.14 1.57 2.36 1.05.21 1.95.82 2.54 1.71.59.89.8 1.96.59 3.01a2 2 0 0 0 1.57 2.35Z"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://www.twilio.com/en-us/phone-numbers/toll-free" target="_self"> Toll-free numbers </a> </h5> <p>10-digit phone numbers with a standard prefix that are voice and SMS-enabled. </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" role="presentation"> <title>Package with heart</title> <g class="commerce_parcel-box--heart"> <g class="path-fill"> <path fill-rule="evenodd" d="M8.05 25.223a1.86 1.86 0 0 0 .34-.393c.33-.29.763-.465 1.236-.465h45.01c1.036 0 1.876.84 1.876 1.875v4.219a1.875 1.875 0 0 0 3.75 0v-4.22c0-1.449-.547-2.77-1.448-3.768a1.889 1.889 0 0 0-.114-.348L53.12 9.37A5.626 5.626 0 0 0 47.964 6H15.89a5.626 5.626 0 0 0-5.203 3.483l-5.453 13.24A5.6 5.6 0 0 0 4 26.24v30a5.626 5.626 0 0 0 5.626 5.625h24.38a1.875 1.875 0 1 0 0-3.75H9.627a1.875 1.875 0 0 1-1.875-1.875v-30c0-.375.11-.724.3-1.017Zm6.106-14.312A1.875 1.875 0 0 1 15.89 9.75h13.898v10.865H10.16l3.997-9.704Zm39.79 9.704-4.263-9.741a1.875 1.875 0 0 0-1.718-1.124H33.539v10.865h20.407Z" clip-rule="evenodd"/> <path fill-rule="evenodd" d="M39.005 37.197a8.16 8.16 0 0 1 3.366-.728 8.16 8.16 0 0 1 3.365.728 8.416 8.416 0 0 1 2.774 2.03l2.377 2.555 2.377-2.555a8.417 8.417 0 0 1 2.773-2.03 8.16 8.16 0 0 1 3.366-.728 8.16 8.16 0 0 1 3.365.728c1.056.477 2 1.172 2.78 2.037A9.467 9.467 0 0 1 68 45.614c0 2.364-.871 4.654-2.459 6.387l-.004.005-11.695 12.68c-.37.407-.822.737-1.329.965a3.968 3.968 0 0 1-3.253 0 4.044 4.044 0 0 1-1.329-.965L36.232 52.001a9.463 9.463 0 0 1-2.459-6.387c0-2.361.87-4.648 2.453-6.38a8.415 8.415 0 0 1 2.78-2.037Zm23.412 4.865a4.197 4.197 0 0 0-1.389-1.022 3.94 3.94 0 0 0-1.625-.353 3.94 3.94 0 0 0-1.626.353c-.517.234-.991.58-1.389 1.022l-.023.026-3.933 4.228a2.11 2.11 0 0 1-3.09 0l-3.933-4.228-.024-.026a4.196 4.196 0 0 0-1.388-1.022 3.94 3.94 0 0 0-1.626-.353 3.94 3.94 0 0 0-1.626.353c-.517.234-.99.58-1.388 1.022l-.013.014a5.243 5.243 0 0 0-1.35 3.538c0 1.334.492 2.6 1.348 3.535l.002.002 11.543 12.516L62.43 49.151l.002-.002a5.243 5.243 0 0 0 1.348-3.535 5.243 5.243 0 0 0-1.35-3.538l-.013-.014Z" clip-rule="evenodd"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://www.twilio.com/en-us/messaging/channels/sms/short-codes" target="_self"> Short codes </a> </h5> <p>5-digit recognizable numbers to send and receive high-volume text and picture messages.</p> </div> </li> </ul> </div> <div class="grid-container-column"> <ul data-uuid="" class="list list-icon spacing-tight large " role="list"> <li> <div class="list-marker"> <svg width="32" height="32" viewBox="0 0 32 32" class="icon--decorative" xmlns="http://www.w3.org/2000/svg" fill="currentColor"> <title>User speech bubble</title> <path class="fill-path path-fill" fill-rule="evenodd" clip-rule="evenodd" d="M8.51502 1.77778C7.74489 1.77778 6.99262 2.48292 6.99262 3.51755V25.1852H23.3482V19.5259C23.3482 19.035 23.7461 18.637 24.237 18.637C24.728 18.637 25.1259 19.035 25.1259 19.5259V28.4824C25.1259 30.3513 23.7191 32 21.8258 32H8.51502C6.62172 32 5.21484 30.3513 5.21484 28.4824V3.51755C5.21484 1.64864 6.62172 0 8.51502 0H21.8258C23.7191 0 25.1259 1.64864 25.1259 3.51755C25.1259 4.00846 24.728 4.40643 24.237 4.40643C23.7461 4.40643 23.3482 4.00846 23.3482 3.51755C23.3482 2.48292 22.5959 1.77778 21.8258 1.77778H8.51502ZM6.99262 26.9629V28.4824C6.99262 29.517 7.74489 30.2222 8.51502 30.2222H21.8258C22.5959 30.2222 23.3482 29.517 23.3482 28.4824V26.9629H6.99262ZM15.2191 5.24443C15.512 5.24313 15.7927 5.12622 15.9999 4.919C16.1904 4.72852 16.3045 4.47599 16.3227 4.20892C16.3248 4.184 16.3259 4.15879 16.3259 4.13333C16.3259 3.83865 16.2089 3.55603 16.0005 3.34765C15.7921 3.13928 15.5095 3.02222 15.2148 3.02222C14.9201 3.02222 14.6375 3.13928 14.4291 3.34765C14.2208 3.55603 14.1037 3.83865 14.1037 4.13333C14.1037 4.42801 14.2208 4.71063 14.4291 4.919C14.6363 5.12622 14.917 5.24313 15.2099 5.24443C15.2113 5.24443 15.2128 5.24444 15.2142 5.24444M18.6911 6.96999C19.2999 6.37508 20.1214 6.04444 20.9738 6.04444H27.4281C28.2804 6.04444 29.1019 6.37508 29.7108 6.96999C30.3203 7.56557 30.6667 8.3778 30.6667 9.22919V11.9029C30.6667 12.7542 30.3203 13.5665 29.7108 14.1621C29.1019 14.757 28.2804 15.0876 27.4281 15.0876H26.3092L22.5501 17.3766C22.2757 17.5437 21.9324 17.5498 21.6523 17.3924C21.3723 17.235 21.1989 16.9387 21.1989 16.6174V15.0876H20.9738C20.1214 15.0876 19.2999 14.757 18.6911 14.1621C18.0815 13.5665 17.7352 12.7542 17.7352 11.9029V9.22919C17.7352 8.3778 18.0815 7.56557 18.6911 6.96999ZM20.9738 7.82221C20.5798 7.82221 20.206 7.97533 19.9335 8.24155C19.6617 8.50708 19.513 8.86277 19.513 9.22919V11.9029C19.513 12.2693 19.6617 12.625 19.9335 12.8905C20.206 13.1567 20.5798 13.3098 20.9738 13.3098H22.0878C22.5787 13.3098 22.9767 13.7078 22.9767 14.1987V15.0355L25.5976 13.4395C25.7369 13.3547 25.8968 13.3098 26.0599 13.3098H27.4281C27.8221 13.3098 28.1959 13.1567 28.4683 12.8905C28.7401 12.625 28.8889 12.2693 28.8889 11.9029V9.22919C28.8889 8.86277 28.7401 8.50708 28.4683 8.24155C28.1959 7.97533 27.8221 7.82221 27.4281 7.82221H20.9738ZM13.8496 13.1174C14.2566 12.9531 14.6921 12.8688 15.1314 12.8688C15.5707 12.8688 16.0061 12.9531 16.4132 13.1174C16.8202 13.2817 17.1916 13.5232 17.5054 13.829C17.8193 14.1349 18.0695 14.4993 18.2406 14.902C18.4118 15.3048 18.5002 15.7373 18.5002 16.1746C18.5002 16.612 18.4118 17.0445 18.2406 17.4473C18.0695 17.85 17.8193 18.2144 17.5054 18.5203C17.3997 18.6233 17.2874 18.719 17.1695 18.8069C17.4899 18.9431 17.797 19.1119 18.0856 19.3116C18.951 19.9108 19.6075 20.7602 19.9599 21.745C20.1253 22.2072 19.8846 22.716 19.4224 22.8813C18.9602 23.0467 18.4514 22.8061 18.286 22.3439C18.0607 21.7142 17.6385 21.1643 17.0737 20.7733C16.5085 20.3821 15.8299 20.1703 15.1319 20.1703C14.4338 20.1703 13.7552 20.3821 13.19 20.7733C12.6252 21.1643 12.203 21.7142 11.9777 22.3439C11.8123 22.8061 11.3035 23.0467 10.8413 22.8813C10.3791 22.716 10.1384 22.2072 10.3038 21.745C10.6562 20.7602 11.3127 19.9108 12.1781 19.3116C12.4665 19.112 12.7734 18.9433 13.0936 18.8072C12.9755 18.7192 12.8632 18.6234 12.7574 18.5203C12.4435 18.2144 12.1933 17.85 12.0221 17.4473C11.8509 17.0445 11.7625 16.612 11.7625 16.1746C11.7625 15.7373 11.8509 15.3048 12.0221 14.902C12.1933 14.4993 12.4435 14.1349 12.7574 13.829C13.0712 13.5232 13.4425 13.2817 13.8496 13.1174ZM15.1314 14.6466C14.9193 14.6466 14.7098 14.6873 14.5151 14.7659C14.3204 14.8445 14.1449 14.9592 13.9982 15.1022C13.8515 15.2451 13.7364 15.4136 13.6583 15.5974C13.5802 15.7811 13.5403 15.9772 13.5403 16.1746C13.5403 16.3721 13.5802 16.5682 13.6583 16.7519C13.7364 16.9357 13.8515 17.1042 13.9982 17.2471C14.1449 17.3901 14.3204 17.5048 14.5151 17.5834C14.7098 17.662 14.9193 17.7027 15.1314 17.7027C15.3435 17.7027 15.5529 17.662 15.7477 17.5834C15.9424 17.5048 16.1178 17.3901 16.2646 17.2471C16.4113 17.1042 16.5264 16.9357 16.6045 16.7519C16.6826 16.5682 16.7225 16.3721 16.7225 16.1746C16.7225 15.9772 16.6826 15.7811 16.6045 15.5974C16.5264 15.4136 16.4113 15.2451 16.2646 15.1022C16.1178 14.9592 15.9424 14.8445 15.7477 14.7659C15.5529 14.6873 15.3435 14.6466 15.1314 14.6466Z" fill="#121C2D"/> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> <a href="https://www.twilio.com/docs/messaging/services/alphanumeric-sender-ids-in-messaging-services" target="_self"> Alphanumeric Sender IDs </a> </h5> <p>A sender ID based on your company or brand name that is used for one-way messaging at high volumes in supported countries.</p> </div> </li> <li> <div class="list-marker"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor" class="icon--decorative" role="presentation"> <title> Chat Bubble </title> <g class="sales-support/headset--chat-bubble"> <g class="path-fill fill-path"> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M14.678 15.855c0-.489-.4-.889-.89-.889h-3.457a.874.874 0 0 0-.627.263L6.22 18.713V15.86c0-.489-.4-.889-.889-.889a3.093 3.093 0 0 1-2.2-.911 3.093 3.093 0 0 1-.911-2.2V5.855c0-.83.324-1.613.911-2.2a3.093 3.093 0 0 1 2.2-.91h11c.831 0 1.613.324 2.2.91.587.587.911 1.37.911 2.2v4.934c0 .489.4.889.89.889.488 0 .888-.4.888-.89V5.856a4.854 4.854 0 0 0-1.431-3.457A4.854 4.854 0 0 0 16.33.967h-11a4.854 4.854 0 0 0-3.458 1.43 4.854 4.854 0 0 0-1.43 3.458v6c0 1.307.506 2.534 1.43 3.458a4.855 4.855 0 0 0 2.57 1.351v4.191c0 .36.217.685.546.823a.913.913 0 0 0 .338.066.87.87 0 0 0 .626-.262l4.738-4.738h3.089c.489 0 .889-.4.889-.889h.009Z"/> <path clip-rule="evenodd" class="path-fill" fill-rule="evenodd" d="M5.06 7.695a1.396 1.396 0 0 0-.591 1.427c.053.271.187.516.382.711a1.372 1.372 0 0 0 .982.405 1.401 1.401 0 0 0 1.151-.618c.156-.231.236-.498.236-.773 0-.37-.142-.72-.409-.983a1.416 1.416 0 0 0-1.755-.173l.004.004Zm5 0a1.367 1.367 0 0 0-.511.623 1.372 1.372 0 0 0 .302 1.51 1.372 1.372 0 0 0 .982.405 1.4 1.4 0 0 0 1.387-1.391c0-.369-.147-.72-.409-.982a1.41 1.41 0 0 0-1.751-.173v.008Zm5 0a1.367 1.367 0 0 0-.511.623 1.373 1.373 0 0 0 .302 1.51 1.372 1.372 0 0 0 .982.405 1.4 1.4 0 0 0 1.387-1.391c0-.369-.147-.72-.409-.982a1.41 1.41 0 0 0-1.751-.173v.008Zm15.587 13.111a3.08 3.08 0 0 0-1.343-.786 6.887 6.887 0 0 0-1.986-4.129 6.891 6.891 0 0 0-4.907-2.031c-.916 0-1.809.178-2.658.529a6.893 6.893 0 0 0-2.253 1.506 6.895 6.895 0 0 0-1.987 4.138c-.502.142-.96.405-1.338.782a3.066 3.066 0 0 0-.906 2.183v2.204c0 .827.324 1.6.906 2.182a3.07 3.07 0 0 0 2.183.902h.555a1.42 1.42 0 0 0 1.01-.417c.27-.267.421-.627.426-1.014v-5.502a1.47 1.47 0 0 0-.418-1.018 1.415 1.415 0 0 0-.609-.355c.062-.396.17-.782.32-1.156a5.158 5.158 0 0 1 4.773-3.187 5.13 5.13 0 0 1 3.65 1.512 5.107 5.107 0 0 1 1.44 2.822 1.374 1.374 0 0 0-.605.355c-.267.267-.422.64-.422 1.018v5.502a1.43 1.43 0 0 0 .889 1.329c.057.027.12.04.182.054a1.3 1.3 0 0 1-1.28 1.027h-1.654c-.488 0-.888.4-.888.888 0 .49.4.89.889.89h1.653c.827 0 1.6-.32 2.187-.907a3.054 3.054 0 0 0 .893-1.974 3.076 3.076 0 0 0 1.302-.773 3.066 3.066 0 0 0 .907-2.182v-2.205c0-.826-.32-1.6-.907-2.186h-.004Zm-14.08 5.698h-.214a1.32 1.32 0 0 1-.929-.382 1.302 1.302 0 0 1-.386-.924v-2.205c0-.35.137-.68.386-.924.25-.25.578-.383.925-.383h.213v4.818h.005Zm13.209-1.31c0 .35-.138.68-.387.928a1.3 1.3 0 0 1-.93.382h-.208v-4.826h.142c.023 0 .045.008.067.008h.035c.338.01.654.143.894.383a1.3 1.3 0 0 1 .382.929v2.204l.005-.009Z"/> </g> </g> </svg> </div> <div class="list-content "> <h5 class="list-title title-xxs"> National numbers </h5> <p>Non-geographic phone numbers that are reachable from an entire country at the same price as a local phone call.</p> </div> </li> </ul> </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 class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Choose the US phone number type that’s best for your use case </h2> <p class="copy-medium dark-text"> Each phone number type has different capabilities to engage customers in the most effective way. </p> </div> </div> </div> <div id="" class="grid-container slim medium-gap" style=""> <div class="grid-container-column"> <div class="pricing-table anchor-left text-align-center "> <table> <thead class="pricing-table-head bg-header-blue"> <tr> <th> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p style=" text-align: center; "><b><span class="copy-large">Features</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </th> <th> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-large">A2P 10DLC</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </th> <th> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-large">Toll-Free</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </th> <th> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-large">Short code</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </th> </tr> </thead> <tbody class="pricing-table-body bg-striped-gray"> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p style=" text-align: left; "><b><span class="copy-small">Number recognition</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p style=" text-align: center; ">Local prefix</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Branded number</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Branded number</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Message throughput range - Messages Per Second (MPS)</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>3-180 MPS<br /> (additional throughput based on TCR Trust Score)</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>3-150+ MPS</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>100+ MPS</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Filtering for spam/content</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><span class="copy-small"><b>MMS support</b></span></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Voice support</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Yes</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>No</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Delivery receipts (DLRs)</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Carrier</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Handset</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Handset</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Stop opt-out</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Managed by Twilio</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Managed at network level</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>Managed by business</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> <tr> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p><b><span class="copy-small">Provisioning time</span></b></p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>2-7 days</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>2-7 days</p> </div> <div class="pricing-table-content"> </div> </div> </td> <td> <div class="pricing-table-cell"> <div class="pricing-table-rte"> <p>6-7 weeks</p> </div> <div class="pricing-table-content"> </div> </div> </td> </tr> </tbody> </table> </div> <div data-uuid="789519183" class="button-container horizontal medium center"> <a class="button button-primary right" href="https://www.twilio.com/try-twilio" target="_self" data-uuid="179ce976-e13d-35b7-8e16-aa76dd360783" 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 slim medium-gap" style=""> <div class="grid-container-column"> <div class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Features to manage your business phone numbers </h2> </div> </div> </div> <div id="" class="grid-container two-columns slim medium-gap" style=""> <div class="grid-container-column"> <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"> Number hosting </h5> <p>Use the business phone numbers you already own to send and receive messages with Twilio’s communication APIs.</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"> Number porting </h5> <p>Transfer your phone numbers from another provider quickly and easily—making the switch to Twilio is simple. </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"> Messaging and Voice Insights </h5> <p>Analyze your voice and message performance, identify and debug issues, optimize delivery to engage your end users. </p> </div> </li> </ul> </div> <div class="grid-container-column"> <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"> Number verification </h5> <p>Know that every Twilio Phone Number goes through extensive testing, including technical evaluation, capability testing, and traffic monitoring.</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"> 10DLC and Toll-free onboarding APIs </h5> <p>Register your 10DLC and toll-free phone numbers through our onboarding API and software to streamline the process. </p> </div> </li> </ul> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1141461682" class="button-container horizontal medium center"> <a class="button button-primary right" href="https://www.twilio.com/try-twilio" target="_self" data-uuid="08513e12-5fb9-3f2c-89a2-9f10901867af" 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 class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Compliance features for phone number management </h2> </div> </div> </div> <div id="" class="grid-container three-columns default medium-gap equal-heights" style=""> <div class="grid-container-column"> <div id="" class="grid-container default with-border medium-gap" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_api-compliance.png/_jcr_content/renditions/compressed-original.webp" alt="Regulatory and compliance APIs" title="Regulatory and compliance APIs" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_api-compliance.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> <div data-uuid="-1810056070" class="divider"> <hr/> </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><b>Regulatory and compliance APIs</b></p> <p>Keeping up with local regulatory requirements is a headache. Twilio makes it easy to manage those requirements for compliant global communications. </p> </div> <div data-uuid="-199238995" class="button-container horizontal small left"> <a class="button link right" href="https://www.twilio.com/docs/phone-numbers/regulatory/api" target="_self" data-uuid="39192bb6-44f9-30f2-94dd-d345c31bf4b4" aria-label="View docs"> <span class="button-text"> View docs </span> </a> </div> </div> </div> </div> <div class="grid-container-column"> <div id="" class="grid-container default with-border medium-gap" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_trust-hub.png/_jcr_content/renditions/compressed-original.webp" alt="Trust Hub" title="Trust Hub" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_trust-hub.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> <div data-uuid="-840475047" class="divider"> <hr/> </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><span class="copy-medium"><b>Trust Hub</b></span></p> <p>Create a verified Business Profile and manage your phone number verification in one place to join our fully verified communications ecosystem. </p> </div> <div data-uuid="434145971" class="button-container horizontal small left"> <a class="button link right" href="/en-us/trust-hub" target="_self" data-uuid="e650d14f-d79a-302b-9c3a-3e6a98afe29a" aria-label="Visit Trust Hub"> <span class="button-text"> Visit Trust Hub </span> </a> </div> </div> </div> </div> <div class="grid-container-column"> <div id="" class="grid-container default with-border medium-gap" style=""> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_phone-number-lookup.png/_jcr_content/renditions/compressed-original.webp" alt="Phone number lookup" title="Phone number lookup" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_phone-number-lookup.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> <div data-uuid="129105976" class="divider"> <hr/> </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><span class="copy-medium"><b>Phone number lookup</b></span></p> <p>Determine if a phone number is valid before you send messaging or voice traffic by identifying the line type as mobile, landline, VoIP, or temporary number.</p> </div> <div data-uuid="1567336564" class="button-container horizontal small left"> <a class="button link right" href="/en-us/user-authentication-identity/lookup" target="_self" data-uuid="2f9bf41d-ddd8-3690-b6cf-012c646255e0" aria-label="Try Lookup"> <span class="button-text"> Try Lookup </span> </a> </div> </div> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1270256270" class="button-container horizontal medium center"> <a class="button button-primary right" href="/en-us/guidelines/regulatory" target="_self" data-uuid="0eb7bb85-85ef-379f-afdc-00661b4a98cf" aria-label="See global phone number regulations"> <span class="button-text"> See global phone number regulations </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 class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> How to get started with Twilio phone numbers </h2> </div> </div> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div class="tabs vertical tabs--light" data-author-mode="DISABLED"> <div class="tabs-navigation"> <ul class="tabs-navigation__list" role="tablist" aria-multiselectable="false" data-cmp-hook-tabs="tab"> <li class="tabs-button" role="tab" tabindex="0" id="-1631139158" aria-controls="panel--1631139158"> <h3 class="tabs-button__heading">Provision</h3> </li> <li class="tabs-button" role="tab" tabindex="-1" id="-1630271194" aria-controls="panel--1630271194"> <h3 class="tabs-button__heading">Port</h3> </li> <li class="tabs-button" role="tab" tabindex="-1" id="-1625505743" aria-controls="panel--1625505743"> <h3 class="tabs-button__heading">Host</h3> </li> <li class="tabs-button" role="tab" tabindex="-1" id="-1602390688" aria-controls="panel--1602390688"> <h3 class="tabs-button__heading">Manage</h3> </li> </ul> </div> <div class="tabs-slides"> <div class="tabs-slide" role="tabpanel" tabindex="0" id="panel--1631139158" aria-labelledby="-1631139158" aria-hidden="false" data-cmp-hook-tabs="tabpanel"><div class="column-control"> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-336407993" class="title "> <h4 class="title-extra-small"> Get new numbers </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>Search for and instantly buy the numbers you need to reach customers. Filter based on location or number type to find exactly what you need from our extensive inventory.</p> <p><a href="https://www.twilio.com/en-us/phone-numbers/global-catalog" target="_blank" rel="noopener noreferrer">Try our global phone numbers catalog</a></p> </div> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Provision.png/_jcr_content/renditions/compressed-original.webp" alt="Buy new numbers to reach your customers" title="Buy new numbers to reach your customers" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Provision.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--1630271194" aria-labelledby="-1630271194" 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 data-uuid="-961983413" class="title "> <h4 class="title-extra-small"> Porting in existing numbers </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>Port your existing numbers to Twilio through an online application or email—then we take care of the rest. For complex use cases, you can have a dedicated expert manage and execute your port-in.</p> <p><a href="https://www.twilio.com/en-us/guidelines/porting" target="_blank" rel="noopener noreferrer">See porting guidelines</a></p> </div> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Port.png/_jcr_content/renditions/compressed-original.webp" alt="Port your existing numbers to Twilio" title="Port your existing numbers to Twilio" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Port.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--1625505743" aria-labelledby="-1625505743" 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 data-uuid="608189920" class="title "> <h4 class="title-extra-small"> Host your phone numbers </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>Enable SMS, Voice, and MMS with your existing phone numbers without changing your voice service.</p> <p><a href="https://www.twilio.com/docs/phone-numbers/hosted-numbers" target="_blank" rel="noopener noreferrer">Number hosting FAQs</a></p> </div> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Host.png/_jcr_content/renditions/compressed-original.webp" alt="Host your phone numbers" title="Host your phone numbers" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Host.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--1602390688" aria-labelledby="-1602390688" 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 data-uuid="-1031363375" class="title "> <h4 class="title-extra-small"> Manage your phone number inventory </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>See active numbers in your accounts, transfer numbers within your account, check number activity and usage in the Console.</p> <p><a href="https://www.twilio.com/docs/phone-numbers/best-practices" target="_blank" rel="noopener noreferrer">Best practices for phone number use</a></p> </div> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Manage.png/_jcr_content/renditions/compressed-original.webp" alt="Manage your phone number inventory in Twilio" title="Manage your phone number inventory in Twilio" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/Illo_Manage.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </div> </div> </div> </div> </div> </div> </div> </div> <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"> There’s strength in numbers </h2> <p class="copy-medium dark-text"> Power your communications with a recognized leader in CPaaS*. </p> </div> </div> </div> <div id="" class="grid-container default medium-gap equal-heights" style=""> <div class="grid-container-column"> <div class="proof-points column-size-4 " data-cmp-is="cmp-proof-points" data-cmp-variation="default"> <div class="proof-points-column "> <h4 class="proof-points-title">4,800+</h4> <p> carrier connections </p> </div> <div class="proof-points-column "> <h4 class="proof-points-title">180+</h4> <p> countries reached </p> </div> <div class="proof-points-column "> <h4 class="proof-points-title">100%</h4> <p> verified 10DLC traffic </p> </div> <div class="proof-points-column "> <h4 class="proof-points-title">157B+</h4> <p> messages sent/received per year </p> </div> </div> <div data-uuid="-581691024" class="button-container horizontal medium center"> <a class="button link right" href="https://www.twilio.com/en-us/why-twilio" target="_self" data-uuid="5c2fba74-6762-3347-b32a-018497365ca4" aria-label="More reasons to use Twilio"> <span class="button-text"> More reasons to use Twilio </span> </a> </div> </div> </div> </div> </section> <section class="section-wrapper bg-color-paper default" id=""> <div class="section-content "> <div id="" class="grid-container offset-60-40 default medium-gap center" 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>Start with a free trial. No credit card required.</h2> <p><span class="copy-large">Phone number pricing is combined with your product usage. Visit the pricing page to estimate the total cost of your use case.</span></p> </div> <div id="" class="grid-container default medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="-515601418" class="button-container horizontal medium left"> <a class="button button-primary right" href="https://login.twilio.com/u/signup?state=hKFo2SAxd0tWdHhNLXB0STZNMzVnTkgxVmtXV1hTa1pwazVleaFur3VuaXZlcnNhbC1sb2dpbqN0aWTZIElkSVVMNWNSdlhRZW9PcjBBdEVzTWZYR3d1TGNJRFREo2NpZNkgTW05M1lTTDVSclpmNzdobUlKZFI3QktZYjZPOXV1cks" target="_self" data-uuid="480ea248-b1ff-3988-a387-7458017bce96" aria-label="Start for free"> <span class="button-text"> Start for free </span> </a> <a class="button button-secondary right" href="https://www.twilio.com/en-us/pricing" target="_self" data-uuid="843b38de-d802-3337-8e3f-36cb4bd432e1" aria-label="See pricing"> <span class="button-text"> See pricing </span> </a> </div> </div> </div> </div> <div class="grid-container-column"> <figure class="media"> <div class="media-image "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/list-image.png/_jcr_content/renditions/compressed-original.webp" alt="No credit card required" title="No credit card required" class=" " loading="lazy"/> </div> <div class="media-image--mobile "> <img src="/content/dam/twilio-com/global/en/products/phone-numbers/list-image.png/_jcr_content/renditions/compressed-original.webp" loading="lazy"/> </div> </figure> </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 class="section-header"> <div class="icon"> </div> <h2 class="title-medium dark-text"> Phone numbers FAQs </h2> </div> </div> </div> <div id="" class="grid-container tiny medium-gap" style=""> <div class="grid-container-column"> <div data-uuid="1816052105" data-first-open="true" class="accordion"> <button type="button" class="accordion-item" aria-expanded="false"> <h3 class="accordion-button"> How do I get a business phone number? <span class="accordion-arrow"> <svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.3335 1.46653L8.34564 8.41301C8.3003 8.45815 8.24644 8.49397 8.18716 8.5184C8.12788 8.54284 8.06434 8.55542 8.00016 8.55542C7.93599 8.55542 7.87244 8.54284 7.81316 8.5184C7.75388 8.49397 7.70003 8.45815 7.65468 8.41301L0.666829 1.46653" stroke="#121C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </h3> <div class="accordion-content"> <div class="accordion-dropdown" aria-hidden="true"> <div class="richtext "> <p>You can get access to a business phone number in a few minutes with Twilio. Sign up for a free account if you don’t have one already. There’s no credit card required and your account is loaded with $15 in trial credits to get started.<br /> <br /> In the Twilio Console, you can search and select a phone number you’d like based on area code or number type. Use your trial credits to buy the number. Just remember that you’ll need to complete a verification process (per regulatory requirements) before you can start sending messages or make calls from it. </p> <p>If you already have business phone numbers, you can follow our guidance for porting in numbers to bring them over from another provider to Twilio.<br /> <br /> <a href="https://www.twilio.com/en-us/guidelines/porting">See our porting guidelines</a></p> </div> </div> </div> </button> <button type="button" class="accordion-item" aria-expanded="false"> <h3 class="accordion-button"> How much does it cost to set up a business phone number? <span class="accordion-arrow"> <svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.3335 1.46653L8.34564 8.41301C8.3003 8.45815 8.24644 8.49397 8.18716 8.5184C8.12788 8.54284 8.06434 8.55542 8.00016 8.55542C7.93599 8.55542 7.87244 8.54284 7.81316 8.5184C7.75388 8.49397 7.70003 8.45815 7.65468 8.41301L0.666829 1.46653" stroke="#121C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </h3> <div class="accordion-content"> <div class="accordion-dropdown" aria-hidden="true"> <div class="richtext "> <p>With Twilio, you can get started with a business phone number for free. </p> <p>You will only be charged by usage for messaging or voice calls for your phone number. <a href="https://www.twilio.com/en-us/pricing">See a pricing overview here.</a></p> <p>The verification process for 10DLC is an additional cost that includes one-time registration fees and recurring campaign fees.</p> </div> </div> </div> </button> <button type="button" class="accordion-item" aria-expanded="false"> <h3 class="accordion-button"> What are options for business phone numbers? <span class="accordion-arrow"> <svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.3335 1.46653L8.34564 8.41301C8.3003 8.45815 8.24644 8.49397 8.18716 8.5184C8.12788 8.54284 8.06434 8.55542 8.00016 8.55542C7.93599 8.55542 7.87244 8.54284 7.81316 8.5184C7.75388 8.49397 7.70003 8.45815 7.65468 8.41301L0.666829 1.46653" stroke="#121C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </h3> <div class="accordion-content"> <div class="accordion-dropdown" aria-hidden="true"> <div class="richtext "> <p><b>10DLC phone numbers</b><br /> Application-to-person 10-digit long codes (A2P 10DLC) are numbers with a local prefix. These are traditional numbers like 415-555-6456 with a specific area code. But 10DLC numbers are registered to a business and sent over routes reserved for application-to-person messaging. </p> <p><b>Toll-free numbers</b><br /> 10-digit phone numbers with a standard prefix (like 833, 888, 800) that are voice and SMS-enabled. Toll-free numbers are familiar and recognizable ways for a customer to contact a business.</p> <p><b>Short codes</b><br /> These are 5-digit numbers or codes that can be numerical (56546) or correlate with a code like (VOICE). They can handle high-volume text and picture messages, but are more expensive than other number types.</p> <p><b>Alphanumeric Sender IDs</b><br /> This is a sender ID based on your company or brand name that you register. It can be used for one-way messaging at high volumes in <a href="https://help.twilio.com/articles/223133767-International-support-for-Alphanumeric-Sender-ID?_gl=1*sgnsf3*_ga*MTI2MTYzMzc4OC4xNjc2NjcxNzM0*_ga_RRP8K4M4F3*MTcwOTMzMDQzNi4xNjAuMS4xNzA5MzMxOTc4LjAuMC4w">certain countries. </a></p> <p><b>National numbers</b><br /> These are non-geographic phone numbers for a specific country. They aren’t tied to a local area code and they can be reached from anywhere within the country for the same rate.</p> </div> </div> </div> </button> <button type="button" class="accordion-item" aria-expanded="false"> <h3 class="accordion-button"> How do I get a toll-free number for my business? <span class="accordion-arrow"> <svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.3335 1.46653L8.34564 8.41301C8.3003 8.45815 8.24644 8.49397 8.18716 8.5184C8.12788 8.54284 8.06434 8.55542 8.00016 8.55542C7.93599 8.55542 7.87244 8.54284 7.81316 8.5184C7.75388 8.49397 7.70003 8.45815 7.65468 8.41301L0.666829 1.46653" stroke="#121C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </h3> <div class="accordion-content"> <div class="accordion-dropdown" aria-hidden="true"> <div class="richtext "> <p>You can get a toll-free number through Twilio by purchasing a toll-free phone number in the console. </p> <p>Before you can send or receive messaging or voice traffic on your new toll-free number, you must go through a verification process. This validates who you are and what you’re sending to end-users.</p> </div> </div> </div> </button> <button type="button" class="accordion-item" aria-expanded="false"> <h3 class="accordion-button"> How do I know if a phone number is owned by Twilio? <span class="accordion-arrow"> <svg width="16" height="10" viewBox="0 0 16 10" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15.3335 1.46653L8.34564 8.41301C8.3003 8.45815 8.24644 8.49397 8.18716 8.5184C8.12788 8.54284 8.06434 8.55542 8.00016 8.55542C7.93599 8.55542 7.87244 8.54284 7.81316 8.5184C7.75388 8.49397 7.70003 8.45815 7.65468 8.41301L0.666829 1.46653" stroke="#121C2D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </h3> <div class="accordion-content"> <div class="accordion-dropdown" aria-hidden="true"> <div class="richtext "> <p>Text +1 (855) 747-7626* (1-855-747-ROBO) with a US phone number to check if it is served from Twilio.</p> </div> </div> </div> </button> </div> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"How do I get a business phone number?","acceptedAnswer":{"@type":"Answer","text":"<p>You can get access to a business phone number in a few minutes with Twilio. Sign up for a free account if you don’t have one already. There’s no credit card required and your account is loaded with $15 in trial credits to get started.<br />\r\n<br />\r\nIn the Twilio Console, you can search and select a phone number you’d like based on area code or number type. Use your trial credits to buy the number. Just remember that you’ll need to complete a verification process (per regulatory requirements) before you can start sending messages or make calls from it. </p>\r\n<p>If you already have business phone numbers, you can follow our guidance for porting in numbers to bring them over from another provider to Twilio.<br />\r\n<br />\r\n<a href=\"https://www.twilio.com/en-us/guidelines/porting\">See our porting guidelines</a></p>\r\n"}},{"@type":"Question","name":"How much does it cost to set up a business phone number?","acceptedAnswer":{"@type":"Answer","text":"<p>With Twilio, you can get started with a business phone number for free. </p>\r\n<p>You will only be charged by usage for messaging or voice calls for your phone number. <a href=\"https://www.twilio.com/en-us/pricing\">See a pricing overview here.</a></p>\r\n<p>The verification process for 10DLC is an additional cost that includes one-time registration fees and recurring campaign fees.</p>\r\n"}},{"@type":"Question","name":"What are options for business phone numbers?","acceptedAnswer":{"@type":"Answer","text":"<p><b>10DLC phone numbers</b><br />\r\nApplication-to-person 10-digit long codes (A2P 10DLC) are numbers with a local prefix. These are traditional numbers like 415-555-6456 with a specific area code. But 10DLC numbers are registered to a business and sent over routes reserved for application-to-person messaging. </p>\r\n<p><b>Toll-free numbers</b><br />\r\n10-digit phone numbers with a standard prefix (like 833, 888, 800) that are voice and SMS-enabled. Toll-free numbers are familiar and recognizable ways for a customer to contact a business.</p>\r\n<p><b>Short codes</b><br />\r\nThese are 5-digit numbers or codes that can be numerical (56546) or correlate with a code like (VOICE). They can handle high-volume text and picture messages, but are more expensive than other number types.</p>\r\n<p><b>Alphanumeric Sender IDs</b><br />\r\nThis is a sender ID based on your company or brand name that you register. It can be used for one-way messaging at high volumes in <a href=\"https://help.twilio.com/articles/223133767-International-support-for-Alphanumeric-Sender-ID?_gl=1*sgnsf3*_ga*MTI2MTYzMzc4OC4xNjc2NjcxNzM0*_ga_RRP8K4M4F3*MTcwOTMzMDQzNi4xNjAuMS4xNzA5MzMxOTc4LjAuMC4w\">certain countries. </a></p>\r\n<p><b>National numbers</b><br />\r\nThese are non-geographic phone numbers for a specific country. They aren’t tied to a local area code and they can be reached from anywhere within the country for the same rate.</p>\r\n"}},{"@type":"Question","name":"How do I get a toll-free number for my business?","acceptedAnswer":{"@type":"Answer","text":"<p>You can get a toll-free number through Twilio by purchasing a toll-free phone number in the console. </p>\r\n<p>Before you can send or receive messaging or voice traffic on your new toll-free number, you must go through a verification process. This validates who you are and what you’re sending to end-users.</p>\r\n"}},{"@type":"Question","name":"How do I know if a phone number is owned by Twilio? ","acceptedAnswer":{"@type":"Answer","text":"<p>Text +1 (855) 747-7626* (1-855-747-ROBO) with a US phone number to check if it is served from Twilio.</p>\r\n"}}]} </script> </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="652875651" class="divider"> <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> "> <p><span class="copy-small">* Twilio named a Leader in the <a href="/en-us/report/gartner-mq-cpaas-2024" target="_self" rel="noopener noreferrer">2024 Gartner® Magic Quadrant™ for CPaaS</a></span></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>