


{"id":22847,"date":"2026-02-18T23:00:53","date_gmt":"2026-02-18T19:00:53","guid":{"rendered":"https:\/\/krisp.ai\/blog\/?p=22847"},"modified":"2026-02-18T23:41:36","modified_gmt":"2026-02-18T19:41:36","slug":"real-time-voice-translation-sdk","status":"publish","type":"post","link":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/","title":{"rendered":"Introducing Krisp RTC: Voice Translation SDK for Customer Experience"},"content":{"rendered":"<h3>Real-Time Voice Translation for Customer Experience<\/h3>\n<p>Real-time voice translation has long been one of the most challenging problems in voice AI. Unlike text-based translation or offline speech processing, live voice conversations introduce strict constraints on latency, accuracy, and conversational flow.<\/p>\n<p>&nbsp;<\/p>\n<p>At Krisp, we develop voice translation technology inside our own products first, validate it in large-scale customer experience (CX) deployments, and only then make it available to developers. After running Voice Translation in production environments for over six months, we\u2019re excited to introduce the <strong>Krisp Voice Translation SDK<\/strong>.<\/p>\n<p>&nbsp;<\/p>\n<hr \/>\n<h3>Why Real-Time Voice Translation Is Hard<\/h3>\n<p>Real-time voice translation is significantly more complex than translating text or processing pre-recorded audio.<\/p>\n<p>&nbsp;<\/p>\n<p>A production-ready system must operate on continuous, live audio streams while balancing several competing constraints at once. It needs to accurately recognize speech across different accents, speaking styles, and pronunciation patterns, often in noisy environments where background sounds and secondary voices are present. These conditions are especially common in customer experience and call center settings.<\/p>\n<p>&nbsp;<\/p>\n<p>At the same time, the system must preserve natural conversational flow. Aggressively minimizing latency can lead to incomplete context and translation errors, while waiting too long for additional speech context can disrupt turn-taking and make conversations feel unnatural. This trade-off becomes particularly visible when handling numbers, names, dates, and identifiers, where even small mistakes can have serious consequences.<\/p>\n<p>&nbsp;<\/p>\n<p>Delivering accurate, natural-sounding translations in real time therefore requires <strong>carefully balancing quality and latency<\/strong>, a challenge that only becomes apparent at scale in real-world deployments.<\/p>\n<p>&nbsp;<\/p>\n<p>Translation quality is continuously evaluated across languages and domains using a combination of automated metrics and human review, with detailed results shared with customers on request.<\/p>\n<p>&nbsp;<\/p>\n<hr \/>\n<h3>Key Features of the Voice Translation SDK<\/h3>\n<p>The Krisp Voice Translation SDK is designed to support real-world, live customer conversations at scale.<\/p>\n<p>&nbsp;<\/p>\n<p>It enables <strong>real-time voice translation across 60+ languages<\/strong>, allowing applications to support multilingual interactions without relying on human interpreters. The SDK is optimized for live, synchronous conversations, where accuracy and conversational clarity matter more than minimizing latency at all costs.<\/p>\n<p>&nbsp;<\/p>\n<p>The SDK is built to perform reliably in noisy, real-world environments. As a best practice, <strong>Krisp Noise Cancellation can be applied locally<\/strong> to remove ambient noise and secondary voices before audio is sent to the Voice Translation services in the Krisp cloud. Cleaning the audio upstream helps isolate the primary speaker\u2019s voice and significantly improves speech recognition accuracy and overall translation quality.<\/p>\n<p>&nbsp;<\/p>\n<p>To further improve accuracy in professional domains, the SDK supports <strong>custom vocabulary and custom dictionaries<\/strong>, allowing teams to adapt translation behavior to domain-specific terminology and enforce consistent outputs.<\/p>\n<p>&nbsp;<\/p>\n<p>The Voice Translation SDK is available across <strong>Windows, macOS, and Web platforms<\/strong>, making it easy to embed live voice translation into both native desktop applications and browser-based experiences.<\/p>\n<p>&nbsp;<\/p>\n<hr \/>\n<h3>Getting Started<\/h3>\n<p>Getting started with the <strong>Krisp Voice Translation SDK<\/strong> is straightforward.<\/p>\n<p>&nbsp;<\/p>\n<p>Users can explore Voice Translation directly from the <strong>Playground<\/strong> in the Krisp SDK portal. To integrate the Voice Translation SDK into an application, developers will need to <strong>request SDK access from Krisp Developers page<\/strong>.<\/p>\n<p>&nbsp;<\/p>\n<div class=\"text_center\">\n<div class=\"btn btn--primary\">\n        <a style=\"color:#FFF !important;\" href=\"https:\/\/\/krisp.ai\/developers\/\">Get Access<\/a>\n    <\/div>\n<\/div>\n<h2><\/h2>\n<p>Below is a simple JavaScript example demonstrating real-time voice translation from English to Spanish.<\/p>\n<div class=\"code_snippet_parent\">\n<div class=\"code_snippet_holder\">\n<pre><code>\r\n\r\n\/\/ GET A SESSION KEY\r\nconst axios = require(&#8216;axios&#8217;);\r\n\r\nlet config = {\r\nmethod: &#8216;get&#8217;,\r\nmaxBodyLength: Infinity,\r\nurl: &#8216;https:\/\/sdkapi.krisp.ai\/v2\/sdk\/voice-translation\/session\/token?expiration_ttl=100&#8217;,\r\nheaders: {\r\n&#8216;Authorization&#8217;: &#8216;api-key API_KEY&#8217;\r\n}\r\n};\r\n\r\naxios.request(config)\r\n.then((response) =&gt; {\r\nconst SESSION_KEY = response.data.data.session_key\r\n})\r\n.catch((error) =&gt; {\r\nconsole.log(error);\r\n});\r\n\r\nimport { KrispVTSDK, LogLevel } from &#8216;krisp-vt-sdk&#8217;;\r\n\r\n\/\/ 1. Initialize SDK\r\nconst sdk = new KrispVTSDK({\r\napiKey: SESSION_KEY,\r\nlogLevel: LogLevel.WARN \/\/ NONE, ERROR, WARN, INFO, or DEBUG\r\n});\r\n\r\n\/\/ 2. Set up event hooks\r\nsdk.setHooks({\r\nonProcessedAudio: (stream) =&gt; {\r\n\/\/ Play or send the translated audio\r\nconst audio = new Audio();\r\naudio.srcObject = stream;\r\naudio.play();\r\n},\r\nonMessage: (event) =&gt; {\r\n\/\/ Handle transcripts\r\nconsole.log(&#8216;Transcript:&#8217;, event.data.text);\r\n}\r\n});\r\n\r\n\/\/ 3. Start translation service\r\nawait sdk.start({\r\nfrom: &#8216;en-US&#8217;, \/\/ Source language\r\nto: &#8216;es-ES&#8217;, \/\/ Target language\r\ngender: &#8216;female&#8217;,\r\n});\r\n\r\n\/\/ 4. Get microphone and process audio\r\nconst mic = await navigator.mediaDevices.getUserMedia({ audio: true });\r\nawait sdk.process(mic);\r\n\r\n\/\/ 5. Stop when done\r\nawait sdk.stop();\r\n\/\/ 4. Get microphone and process audio\r\nconst mic = await navigator.mediaDevices.getUserMedia({ audio: true });\r\nawait sdk.process(mic);\r\n\r\n\/\/ 5. Stop when done\r\nawait sdk.stop();\r\n\r\n<\/code><\/pre>\n<\/p><\/div>\n<\/div>\n<p>Full documentation, platform-specific guides, and additional examples are available in the <strong>Voice Translation SDK documentation<\/strong>: <a class=\"notion-link-token notion-focusable-token notion-enable-hover\" tabindex=\"0\" href=\"https:\/\/sdk-docs.krisp.ai\/docs\/voice-translation\" rel=\"noopener noreferrer\" data-token-index=\"1\"><span class=\"link-annotation-unknown-block-id-1828551657\">https:\/\/sdk-docs.krisp.ai\/docs\/voice-translation<\/span><\/a><!-- notionvc: 7778dc46-fe29-4cca-bce2-766031019553 --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Real-Time Voice Translation for Customer Experience Real-time voice translation has long been one of the most challenging problems in voice AI. Unlike text-based translation or offline speech processing, live voice conversations introduce strict constraints on latency, accuracy, and conversational flow. &nbsp; At Krisp, we develop voice translation technology inside our own products first, validate it [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":22886,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"two_page_speed":[]},"categories":[417,421,456],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.2 (Yoast SEO v23.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Real-Time Voice Translation SDK for Customer Experience | Krisp<\/title>\n<meta name=\"description\" content=\"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Real-Time Voice Translation SDK for Customer Experience | Krisp\" \/>\n<meta property=\"og:description\" content=\"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\" \/>\n<meta property=\"og:site_name\" content=\"Krisp\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/krispHQ\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-18T19:00:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-18T19:41:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Krisp Engineering Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@krispHQ\" \/>\n<meta name=\"twitter:site\" content=\"@krispHQ\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\"},\"author\":{\"name\":\"Krisp Engineering Team\",\"@id\":\"https:\/\/krisp.ai\/blog\/#\/schema\/person\/e9f59158d89de3002958d323d2e788f5\"},\"headline\":\"Introducing Krisp RTC: Voice Translation SDK for Customer Experience\",\"datePublished\":\"2026-02-18T19:00:53+00:00\",\"dateModified\":\"2026-02-18T19:41:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\"},\"wordCount\":744,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/krisp.ai\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp\",\"articleSection\":[\"Company\",\"Engineering Blog\",\"SDK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\",\"url\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\",\"name\":\"Real-Time Voice Translation SDK for Customer Experience | Krisp\",\"isPartOf\":{\"@id\":\"https:\/\/krisp.ai\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp\",\"datePublished\":\"2026-02-18T19:00:53+00:00\",\"dateModified\":\"2026-02-18T19:41:36+00:00\",\"description\":\"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.\",\"breadcrumb\":{\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage\",\"url\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp\",\"contentUrl\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp\",\"width\":1000,\"height\":700},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/krisp.ai\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introducing Krisp RTC: Voice Translation SDK for Customer Experience\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/krisp.ai\/blog\/#website\",\"url\":\"https:\/\/krisp.ai\/blog\/\",\"name\":\"Krisp\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\/\/krisp.ai\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/krisp.ai\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/krisp.ai\/blog\/#organization\",\"name\":\"Krisp\",\"url\":\"https:\/\/krisp.ai\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/krisp.ai\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2024\/10\/K.png\",\"contentUrl\":\"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2024\/10\/K.png\",\"width\":696,\"height\":696,\"caption\":\"Krisp\"},\"image\":{\"@id\":\"https:\/\/krisp.ai\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/krispHQ\/\",\"https:\/\/x.com\/krispHQ\",\"https:\/\/www.linkedin.com\/company\/krisphq\/\",\"https:\/\/www.youtube.com\/channel\/UCAMZinJdR9P33fZUNpuxXtg\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/krisp.ai\/blog\/#\/schema\/person\/e9f59158d89de3002958d323d2e788f5\",\"name\":\"Krisp Engineering Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/krisp.ai\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/26475ad8219056696662f819691ee49d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/26475ad8219056696662f819691ee49d?s=96&d=mm&r=g\",\"caption\":\"Krisp Engineering Team\"},\"url\":\"https:\/\/krisp.ai\/blog\/author\/eng-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Real-Time Voice Translation SDK for Customer Experience | Krisp","description":"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/","og_locale":"en_US","og_type":"article","og_title":"Real-Time Voice Translation SDK for Customer Experience | Krisp","og_description":"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.","og_url":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/","og_site_name":"Krisp","article_publisher":"https:\/\/www.facebook.com\/krispHQ\/","article_published_time":"2026-02-18T19:00:53+00:00","article_modified_time":"2026-02-18T19:41:36+00:00","og_image":[{"width":1000,"height":700,"url":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp","type":"image\/webp"}],"author":"Krisp Engineering Team","twitter_card":"summary_large_image","twitter_creator":"@krispHQ","twitter_site":"@krispHQ","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#article","isPartOf":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/"},"author":{"name":"Krisp Engineering Team","@id":"https:\/\/krisp.ai\/blog\/#\/schema\/person\/e9f59158d89de3002958d323d2e788f5"},"headline":"Introducing Krisp RTC: Voice Translation SDK for Customer Experience","datePublished":"2026-02-18T19:00:53+00:00","dateModified":"2026-02-18T19:41:36+00:00","mainEntityOfPage":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/"},"wordCount":744,"commentCount":0,"publisher":{"@id":"https:\/\/krisp.ai\/blog\/#organization"},"image":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage"},"thumbnailUrl":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp","articleSection":["Company","Engineering Blog","SDK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/","url":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/","name":"Real-Time Voice Translation SDK for Customer Experience | Krisp","isPartOf":{"@id":"https:\/\/krisp.ai\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage"},"image":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage"},"thumbnailUrl":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp","datePublished":"2026-02-18T19:00:53+00:00","dateModified":"2026-02-18T19:41:36+00:00","description":"Deploy real-time voice translation across 60+ languages with Krisp\u2019s SDK. Optimized for live CX conversations, noise reduction, and custom vocabulary support.","breadcrumb":{"@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#primaryimage","url":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp","contentUrl":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2026\/02\/Voice-Translation-SDK-Thumbnail.webp","width":1000,"height":700},{"@type":"BreadcrumbList","@id":"https:\/\/krisp.ai\/blog\/real-time-voice-translation-sdk\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/krisp.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"Introducing Krisp RTC: Voice Translation SDK for Customer Experience"}]},{"@type":"WebSite","@id":"https:\/\/krisp.ai\/blog\/#website","url":"https:\/\/krisp.ai\/blog\/","name":"Krisp","description":"Blog","publisher":{"@id":"https:\/\/krisp.ai\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/krisp.ai\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/krisp.ai\/blog\/#organization","name":"Krisp","url":"https:\/\/krisp.ai\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/krisp.ai\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2024\/10\/K.png","contentUrl":"https:\/\/krisp.ai\/blog\/wp-content\/uploads\/2024\/10\/K.png","width":696,"height":696,"caption":"Krisp"},"image":{"@id":"https:\/\/krisp.ai\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/krispHQ\/","https:\/\/x.com\/krispHQ","https:\/\/www.linkedin.com\/company\/krisphq\/","https:\/\/www.youtube.com\/channel\/UCAMZinJdR9P33fZUNpuxXtg"]},{"@type":"Person","@id":"https:\/\/krisp.ai\/blog\/#\/schema\/person\/e9f59158d89de3002958d323d2e788f5","name":"Krisp Engineering Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/krisp.ai\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/26475ad8219056696662f819691ee49d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/26475ad8219056696662f819691ee49d?s=96&d=mm&r=g","caption":"Krisp Engineering Team"},"url":"https:\/\/krisp.ai\/blog\/author\/eng-team\/"}]}},"_links":{"self":[{"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/posts\/22847"}],"collection":[{"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/comments?post=22847"}],"version-history":[{"count":6,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/posts\/22847\/revisions"}],"predecessor-version":[{"id":22888,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/posts\/22847\/revisions\/22888"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/media\/22886"}],"wp:attachment":[{"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/media?parent=22847"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/categories?post=22847"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/krisp.ai\/blog\/wp-json\/wp\/v2\/tags?post=22847"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}