{"id":4763,"date":"2022-04-07T10:17:04","date_gmt":"2022-04-07T10:17:04","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=4763"},"modified":"2025-02-27T11:45:12","modified_gmt":"2025-02-27T11:45:12","slug":"how-to-setup-real-time-email-verification-with-zerobounce","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/","title":{"rendered":"How to Setup Real-Time Email Verification with ZeroBounce"},"content":{"rendered":"\n<p>ZeroBounce is an alternate solution for real-time email verification. You may sign up for an account with ZeroBounce by going to their website <a href=\"https:\/\/www.zerobounce.net\/?fbclid=IwAR1F7KTcUSTGv5gwBXDwB1-HWJ4CcSbFUwMCk3bhQB00JefHcwMViEfLp7Y\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.zerobounce.net<\/a><\/p>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>NOTE:<\/strong> You can also use other alternatives below.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to setup Emailable for Email validation<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-bouncer\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to setup Bouncer for Email validation<\/a><\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 1: Create Q&amp;A Email field<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"970\" height=\"765\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png\" alt=\"\" class=\"wp-image-4764\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 2: Click the Add Scripts button<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"968\" height=\"765\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce2.png\" alt=\"\" class=\"wp-image-4765\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 3: Enter the name of the script, select Script as the type and set it as an Enter event<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"972\" height=\"730\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce3.png\" alt=\"\" class=\"wp-image-4766\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 4: Paste this code<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script>\n  let api_key = 'YOUR_API_KEY_HERE'; \n  let v2 = true;\n\n  let emailField, submitBtn, buttonTxt, typingWaitTimer, previousValue, ipAddress = '', restoreTxt;\n\n  const keyPressHandler = () => {\n    clearTimeout(restoreTxt);\n\n    if (!submitBtn) {\n      console.warn('Submit button not found.');\n      return;\n    }\n\n    submitBtn.disabled = true;\n    submitBtn.innerHTML = '&lt;i class=\"fa fa-spin fa-spinner\">&lt;\/i> Verifying email...';\n\n    let value = emailField.value.trim();\n    console.log('Typed email:', value);\n\n    if (value !== '' &amp;&amp; value !== previousValue) {\n      clearTimeout(typingWaitTimer);\n      typingWaitTimer = setTimeout(() => {\n        if (!submitBtn.classList.contains('hidden')) {\n          console.log('Checking email:', value);\n          checkEmail(value);\n        }\n      }, 700);\n    }\n    previousValue = value;\n  };\n\n  const checkEmail = (email) => {\n    if (!email) {\n      console.error('Email field is empty.');\n      return;\n    }\n\n    const encodedEmail = encodeURIComponent(email);\n    const url = `https:\/\/api.zerobounce.net\/v2\/validate?api_key=${api_key}&amp;email=${encodedEmail}&amp;ip_address=${ip_address}`;\n\n    console.log('Making API call to:', url);\n\n    fetch(url)\n      .then(response => {\n        console.log('API Response Status:', response.status);\n        return response.json();\n      })\n      .then(result => {\n        console.log('API Response Data:', result);\n\n        if (typeof DT !== 'undefined' &amp;&amp; DT.setField) {\n          DT.setField('zerobounce_status', result.status);\n        } else {\n          console.warn('DT.setField is not available.');\n        }\n\n        if (result.status === 'valid' || result.status === 'catch-all') {\n          console.log('Valid email detected.');\n          submitBtn.disabled = false;\n          submitBtn.innerHTML = '&lt;i class=\"fa fa-check-circle\">&lt;\/i> Email Verified \u2705';\n          restoreTxt = setTimeout(() => {\n            submitBtn.innerHTML = `&lt;i class=\"fa fa-check-circle\">&lt;\/i> ${buttonTxt}`;\n          }, 2000);\n        } else {\n          console.warn('Invalid email:', result.status);\n          submitBtn.innerHTML = '&lt;i class=\"fa fa-exclamation-circle\">&lt;\/i> Invalid Email \u274c';\n          submitBtn.disabled = true;\n        }\n      })\n      .catch(error => {\n        console.error('ZeroBounce API Error:', error);\n        submitBtn.innerHTML = '&lt;i class=\"fa fa-exclamation-circle\">&lt;\/i> Error Verifying \u274c';\n        submitBtn.disabled = true;\n      });\n  };\n\n  setTimeout(() => {\n    submitBtn = document.querySelector('.submit-btn') || document.querySelector('.next-btn');\n\n    if (!submitBtn) {\n      console.error('Submit button not found.');\n      return;\n    }\n\n    buttonTxt = submitBtn.innerHTML;\n    submitBtn.classList.add('hidden');\n\n    emailField = document.querySelector('input&#91;type=\"email\"]');\n    if (!emailField) {\n      console.error('Email input field not found.');\n      return;\n    }\n\n    console.log('Email field detected:', emailField);\n    emailField.addEventListener('keyup', keyPressHandler);\n  }, 100);\n&lt;\/script>\n\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 5: Replace &#8220;YOUR_API_KEY_HERE&#8221; with your own actual API Key from ZeroBounce<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"792\" height=\"329\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/11\/Capture.png\" alt=\"\" class=\"wp-image-5201\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 6: Save and Publish.<\/h4>\n\n\n\n<p>This completes your setup of ZeroBounce email verification.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ZeroBounce is an alternate solution for real-time email verification. You may sign up for an account with ZeroBounce by going to their website https:\/\/www.zerobounce.net NOTE: You can also use other alternatives below. STEP 1: Create Q&amp;A Email field STEP 2: Click the Add Scripts button STEP 3: Enter the name of the script, select Script [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[242,12],"tags":[249,243,244,247,206,433,246,4,435,434,867],"class_list":["post-4763","post","type-post","status-publish","format-standard","hentry","category-data-validation","category-leadshook","tag-clean-data","tag-data-validation","tag-data-verification","tag-data-verify","tag-email","tag-emails","tag-lead-generation","tag-leadshook","tag-validation","tag-verification","tag-zerobounce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"ZeroBounce is an alternate solution for real-time email verification. You may sign up for an account with ZeroBounce by going to their website https:\/\/www.zerobounce.net NOTE: You can also use other alternatives below. STEP 1: Create Q&amp;A Email field STEP 2: Click the Add Scripts button STEP 3: Enter the name of the script, select Script [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/\" \/>\n<meta property=\"og:site_name\" content=\"LeadsHook Knowledge Base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/leadshook\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-07T10:17:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-27T11:45:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"970\" \/>\n\t<meta property=\"og:image:height\" content=\"765\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Von\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@leadshook\" \/>\n<meta name=\"twitter:site\" content=\"@leadshook\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Von\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/\"},\"author\":{\"name\":\"Von\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/646557edf0c248393812c53a8ce7fe8b\"},\"headline\":\"How to Setup Real-Time Email Verification with ZeroBounce\",\"datePublished\":\"2022-04-07T10:17:04+00:00\",\"dateModified\":\"2025-02-27T11:45:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/\"},\"wordCount\":119,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"keywords\":[\"Clean Data\",\"Data Validation\",\"Data Verification\",\"Data Verify\",\"email\",\"emails\",\"Lead generation\",\"Leadshook\",\"validation\",\"verification\",\"ZeroBounce\"],\"articleSection\":[\"Data Validation\",\"LeadsHook\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/\",\"name\":\"How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"datePublished\":\"2022-04-07T10:17:04+00:00\",\"dateModified\":\"2025-02-27T11:45:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"width\":970,\"height\":765},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-zerobounce\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Setup Real-Time Email Verification with ZeroBounce\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\",\"name\":\"LeadsHook Knowledge Base\",\"description\":\"LeadsHook Training &amp; Technical Help\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\",\"name\":\"LeadsHook\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/leadshook-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/leadshook-logo.png\",\"width\":350,\"height\":83,\"caption\":\"LeadsHook\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/leadshook\\\/\",\"https:\\\/\\\/x.com\\\/leadshook\",\"https:\\\/\\\/www.linkedin.com\\\/showcase\\\/leadshook\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/646557edf0c248393812c53a8ce7fe8b\",\"name\":\"Von\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"caption\":\"Von\"},\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/author\\\/voncs-leadshook-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base","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:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/","og_locale":"en_US","og_type":"article","og_title":"How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base","og_description":"ZeroBounce is an alternate solution for real-time email verification. You may sign up for an account with ZeroBounce by going to their website https:\/\/www.zerobounce.net NOTE: You can also use other alternatives below. STEP 1: Create Q&amp;A Email field STEP 2: Click the Add Scripts button STEP 3: Enter the name of the script, select Script [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2022-04-07T10:17:04+00:00","article_modified_time":"2025-02-27T11:45:12+00:00","og_image":[{"width":970,"height":765,"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","type":"image\/png"}],"author":"Von","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Von","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/"},"author":{"name":"Von","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/646557edf0c248393812c53a8ce7fe8b"},"headline":"How to Setup Real-Time Email Verification with ZeroBounce","datePublished":"2022-04-07T10:17:04+00:00","dateModified":"2025-02-27T11:45:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/"},"wordCount":119,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","keywords":["Clean Data","Data Validation","Data Verification","Data Verify","email","emails","Lead generation","Leadshook","validation","verification","ZeroBounce"],"articleSection":["Data Validation","LeadsHook"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/","url":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/","name":"How to Setup Real-Time Email Verification with ZeroBounce - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","datePublished":"2022-04-07T10:17:04+00:00","dateModified":"2025-02-27T11:45:12+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","width":970,"height":765},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-zerobounce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to Setup Real-Time Email Verification with ZeroBounce"}]},{"@type":"WebSite","@id":"https:\/\/www.leadshook.com\/help\/#website","url":"https:\/\/www.leadshook.com\/help\/","name":"LeadsHook Knowledge Base","description":"LeadsHook Training &amp; Technical Help","publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.leadshook.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.leadshook.com\/help\/#organization","name":"LeadsHook","url":"https:\/\/www.leadshook.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","width":350,"height":83,"caption":"LeadsHook"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/leadshook\/","https:\/\/x.com\/leadshook","https:\/\/www.linkedin.com\/showcase\/leadshook\/"]},{"@type":"Person","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/646557edf0c248393812c53a8ce7fe8b","name":"Von","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","caption":"Von"},"url":"https:\/\/www.leadshook.com\/help\/author\/voncs-leadshook-com\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4763","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=4763"}],"version-history":[{"count":16,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4763\/revisions"}],"predecessor-version":[{"id":7689,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4763\/revisions\/7689"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=4763"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=4763"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=4763"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}