Showing source for: https://www.keboola.com?utm_source=community.keboola.com&utm_medium=forward&utm_campaign=community
Redirects (1): https://community.keboola.com/(307) ⟶ https://www.keboola.com?utm_source=community.keboola.com&utm_medium=forward&utm_campaign=community
Duration: 2.051823s

<!DOCTYPE html><!-- Last Published: Thu Jun 06 2024 13:58:36 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="www.keboola.com" data-wf-page="646e2fa52d2671e4a895c172" data-wf-site="5e21dc6f4c5acf29c35bb32c"><head><meta charset="utf-8"/><title>Keboola - Self-Service Data Operations Platform</title><meta content="Keboola: All-in-one data platform, 700+ integrations, AI tools. Empower your teams with self-serviced data reports. Start your free project today." name="description"/><meta content="Keboola - Self-Service Data Operations Platform" property="og:title"/><meta content="Keboola: All-in-one data platform, 700+ integrations, AI tools. Empower your teams with self-serviced data reports. Start your free project today." property="og:description"/><meta content="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8f17510b9588126ae0d84a_ogIMG.png" property="og:image"/><meta content="Keboola - Self-Service Data Operations Platform" property="twitter:title"/><meta content="Keboola: All-in-one data platform, 700+ integrations, AI tools. Empower your teams with self-serviced data reports. Start your free project today." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8f17510b9588126ae0d84a_ogIMG.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><meta content="cney1g3v9aE1cZBIxLGK_9a_TmfVvrZ4Q_yjS59tgr8" name="google-site-verification"/><link href="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/css/keboola-website.9c05cd553.min.css" rel="stylesheet" type="text/css"/><link href="https://fonts.googleapis.com" rel="preconnect"/><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({  google: {    families: ["Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic","Inconsolata:400,700"]  }});</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e7263a4fc879af69c134c52_32.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e7263a8bf518b1d3be1760a_256.png" rel="apple-touch-icon"/><script src="https://www.google.com/recaptcha/api.js" type="text/javascript"></script><!-- Finsweet Cookie Consent -->
<script async src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="opt-in"></script>


<!-- 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;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WMTTBS');</script>

<!-- Email varification -->

<meta name="google-site-verification" content="FYXuP6gNh4wsP-j5anM2xQXCjAX5OokFOEM3rMkTk8c" />
<meta name="facebook-domain-verification" content="m76sfiv9wuipwl5tvdhpp4g095laoe" />

<!-- Jetboost library -->

<!--script id="jetboost-script" type="text/javascript"> window.JETBOOST_SITE_ID = "ckmp5o08r03u10tyl2xtq73w0"; (function(d) { var s = d.createElement("script"); s.src = "https://cdn.jetboost.io/jetboost.js"; s.async = 1; d.getElementsByTagName("head")[0].appendChild(s); })(document); </script-->

<!-- https://github.com/js-cookie/js-cookie -->
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>

<!-- ezra siton code -->
<script>
    
  const my_utmParameters = [
    "utm_source", 
    "utm_medium", 
    "utm_campaign"
  ];

  function getAllUrlParams(url) {
    let obj = Object.fromEntries(new URLSearchParams(location.search));
    return obj;
  }
  /* Check if Lead Cookie already exist */
  var cookieExist = Cookies.get('Lead'); // => if false return undefined
  /* get URL params object */
  var getAllUrlParams = getAllUrlParams(); // return object
  /*Convert a JavaScript object into a string */
  var getAllUrlParamsJSON = JSON.stringify(getAllUrlParams);
  /* Check if the url with utm_parameters */
  let isEmpty = jQuery.isEmptyObject(getAllUrlParams); // return true/false

  /* Case 1 - if the page with parameters & no cockie exsist */
  if(!isEmpty && cookieExist === undefined){
    /* Set lead object for the cockies */
    console.log("Case 1 - parameters & no cockie exsist => Create Cockie");
    /* 
		## Set Cookies ##
		expires: If omitted, the cookie becomes a session cookie (This example)
    */
    createLead();
    setUTMformValues();
  }/*end if*/

  let compare = is_this_utm_equal_to_cockie_utm_values();

  if(!isEmpty && cookieExist !== undefined){
    /* it this utm params diff from current lead values create new lead*/
    if(!compare){
      /* Case 3 - cockie already exsist but with diff values Vs url utm parmas
			(remove current Lead and generate new one) 
      */
      console.log("Case 3 - lead Exist, but with diff parames");
      Cookies.remove('Lead');
      createLead();
      setUTMformValues();
    }else{
      console.log("Case 2 - lead exsist with this params");
      setUTMformValues();
    }
  }

  /* Case 4 - cookie Exist  but page without any utm param */
  if(isEmpty && cookieExist !== undefined){
    console.log("Case 4 - cookie Exist  but page without any utm param");
    setUTMformValues();
  }

  function createLead(){
    var lead = {
      parameters: getAllUrlParams
    };
    /* if you want to add 2 days expires for example: 
   Cookies.set('Lead', 'lead', { expires: 2}) 
   */
    Cookies.set('Lead', lead, { });
  }

  /* check if this utm url equal to the current values of cockie lead */
  function is_this_utm_equal_to_cockie_utm_values(){
    for (const this_utm_element of my_utmParameters) {
      /* if utm_source exist */
      let value_exsist = JSON.parse(cookieExist).parameters[this_utm_element] == getAllUrlParams[this_utm_element];
      //console.log(`${value_exsist} - ${JSON.parse(cookieExist).parameters[this_utm_element]} compare to: ${getAllUrlParams[this_utm_element]}`);
      if(value_exsist == false){
        return false;
      }
    }/* end for loop */
    return true;
  }

  function setUTMformValues(){  
    /* webflow form object (Add embed code under webflow designer inside FORM */
    /*
		<input type="text" class="utm_source" placeholder="utm_source" name="utm_source">
<input type="text" class="utm_medium" placeholder="utm_medium" name="utm_medium">
<input type="text" class="utm_campaign" placeholder="utm_campaign" name="utm_campaign">
	*/
    /* the value if the param is empty */
    const empty_param_case = "null";
    /* set feilds */
    for (const this_utm_element of my_utmParameters) {
      /* if utm_source exist */
      set_utm_feild(this_utm_element);
    }/* end for loop */

    /* inner function */
    function set_utm_feild(utm_type){
      let utm_value = JSON.parse(Cookies.get('Lead')).parameters[utm_type];
      let utm_nodes = document.getElementsByClassName(utm_type);
      /* change all utm form feilds */
      if(utm_nodes.length > 0){
        for(var i = 0; i < utm_nodes.length; i++)
        {
          if(!!utm_value && utm_value !== undefined){
            utm_nodes[i].value = utm_value;
          }
          else{
            /* empty param for example ?utm_campaign= or ?utm_campaign */
            utm_nodes[i].value = empty_param_case;
          }
        }/* end for */
      }/* end if */
    }// end inner set_utm_feild function */
  }
  
function onFormSubmit( form ) {
	const id = form.id;

	if ( id === 'wf-form-contact-form' ) {
		var Cname = form.querySelector( '.business-name-contact' ).value;
		var Cemail = form.querySelector( '.business-email-contact' ).value;
		var visitorId = $.md5( Cemail );
		var lead_id = $.md5( Cname );

		dataLayer.push( {
			'event': 'lead',
			'email': Cemail,
			'visitor_id': visitorId,
			'lead_id': lead_id,
		} );
		return
	}

	if ( ['wf-form-newsletter', 'wf-form-newsletter2'].includes(id) ) {
		const Cemail = form.querySelector( '.business-email-newsletter' ).value
		const visitorId = $.md5( Cemail );

		dataLayer.push( {
			'event': 'newsletter_popup_submit',
			'email': Cemail,
			'visitor_id': visitorId
		} );
		return;
	}

	if ( id === 'submit-partner-opp' ) {
		const Cemail = form.querySelector( '.partner-email' ).value
		const visitorId = $.md5( Cemail );

		dataLayer.push( {
			'event': 'partner_lead',
			'email': Cemail,
			'visitor_id': visitorId,
		} );
		return;
	}

	if ( id === 'wf-form-component' ) {
		const Cemail = form.querySelector( '.component-request' ).value
		const visitorId = $.md5( Cemail );

		dataLayer.push( {
			'event': 'lead_component',
			'email': Cemail,
			'visitor_id': visitorId,
		} );
		return;
	}

	if ( id === 'webinar-past-form' ) {
		const Cemail = form.querySelector( '.business-email-webinar' ).value;
		const visitorId = $.md5( Cemail );
		const Pname = document.title;

		dataLayer.push( {
			'event': 'webinar_form_submit',
			'email': Cemail,
			'visitor_id': visitorId,
			'name': Pname,
		} );
		return;
	}

	if (id === 'wf-form-gated-content') {
		var Pname = document.title;
		var Cemail = form.querySelector( '.business-email-gated-content' ).value;
		var visitorId = $.md5(Cemail);

		dataLayer.push({
			'event': 'gated_content_signup',
			'email': Cemail,
			'visitor_id': visitorId,
			'name': Pname,
		});

		return;
	}
  }

</script><meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head><body data-w-id="5e21dc704c5acf5e175bb32f" style="opacity:1" class="static-page"><div class="newsletterpopup"><div class="pop-up-form"><h2 class="ds-heading-2">Join our newsletter</h2><div class="ds-paragraph-small margin-bottom-10">#noSpamWePromise</div><div class="form-block-2 w-form"><form id="wf-form-newsletter" name="wf-form-newsletter" data-name="newsletter" method="get" class="form newsletterform w-clearfix" data-wf-page-id="646e2fa52d2671e4a895c172" data-wf-element-id="8fe957a4-edbd-db9b-c3dd-6b64a82ab448"><input class="ds-text-field business-email-newsletter ds-margin-bottom-m w-input" maxlength="256" name="Business-Email" data-name="Business Email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" placeholder="Business email" type="email" id="business-email" required=""/><div data-sitekey="6LcncIYpAAAAAHhy26mTKFe0cJgWRbGtI_vi9Tif" class="w-form-formrecaptcha g-recaptcha g-recaptcha-error g-recaptcha-disabled"></div><div class="ds-margin-bottom-l">By subscribing to our newsletter you agree with Keboola Czech s.r.o. <a href="/privacy-policy" class="ds-link-2">Privacy Policy</a>.</div><input type="submit" data-wait="Please wait..." class="buttonblue newsletterform w-button" value="Subscribe"/></form><div data-form-id="wf-form-newsletter" class="success-message mailchimp w-form-done"><div class="text-block-955">Thank you! Your submission has been received!</div></div><div class="w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div><div data-w-id="8fe957a4-edbd-db9b-c3dd-6b64a82ab452" class="cross"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5ea825cef5ced814fa2cf8c3_cross.svg" alt="cross-icon" class="close"/></div></div></div><div class="sign-up-pop-up try"><div class="pop-up-form try-keboola"><div id="w-node-ab8a4b4a-992d-bca5-274e-8e1835165353-35165351" class="div-block-181"><h2 id="w-node-ab8a4b4a-992d-bca5-274e-8e1835165354-35165351">Run your data operations on a single, unified platform.</h2><div id="w-node-ab8a4b4a-992d-bca5-274e-8e1835165356-35165351" class="bullet-points"><ul role="list" class="list-8"><li class="list-item-5">Easy setup, no data storage required</li><li class="list-item-6">Free forever for core features</li><li class="list-item-7">Simple expansion with additional credits</li></ul></div><div data-w-id="ab8a4b4a-992d-bca5-274e-8e183516535e" class="cross"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5ea825cef5ced814fa2cf8c3_cross.svg" alt="cross-icon" class="close"/></div><div id="w-node-ab8a4b4a-992d-bca5-274e-8e1835165360-35165351" class="heroemail w-form"><form method="get" name="wf-form-modal" data-name="modal" id="form-modal" class="form-3 middlepopup w-clearfix" data-wf-page-id="646e2fa52d2671e4a895c172" data-wf-element-id="ab8a4b4a-992d-bca5-274e-8e1835165361"><input type="submit" data-wait="Please wait..." id="popup-cta" class="submit-button hp signup w-node-ab8a4b4a-992d-bca5-274e-8e1835165362-35165351 w-button" value="Get Started"/><input class="inputherohome signup w-node-ab8a4b4a-992d-bca5-274e-8e1835165363-35165351 w-input" maxlength="256" name="form-modal-email" data-name="form-modal-email" placeholder="Your e-mail" type="email" id="form-modal-email"/></form><div class="w-form-done"><div>Thank you! Your submission has been received!</div></div><div class="hp-error w-form-fail"><div class="text-block-1023">Oops! Something went wrong while submitting the form.</div></div></div></div><div id="w-node-ab8a4b4a-992d-bca5-274e-8e183516536a-35165351" class="div-block-180"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f8ea3739a0f00fcce5a4274_Group%20661.png" loading="lazy" width="346" sizes="100vw" alt="" srcset="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f8ea3739a0f00fcce5a4274_Group%20661-p-500.png 500w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f8ea3739a0f00fcce5a4274_Group%20661.png 767w" class="image-103"/></div></div></div><div class="menu-div"><main id="navigation" class="navigation-wrap"><section class="section-top-bar"><div class="w-layout-blockcontainer containerdefault w-container"><div class="top-navbar-box top-navbar-box---desktop"><div>New AI Features And Capabilities.</div><a href="https://www.keboola.com/product/new-releases-2024-q2" target="_blank" class="navbar-top-link">See Keboola Roadmap for Q2</a></div><div class="top-navbar-box top-navbar-box---mobile"><div>New Features Released!</div><a href="/product/new-releases-2024-q2" class="navbar-top-link">See Keboola Q2 Roadmap</a></div></div></section><div data-collapse="medium" data-animation="default" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="navigation w-nav"><div data-w-id="6010a095-77b6-2c60-7fee-9423d97e0fd3" class="searchbar-container"><form action="/search" class="search nav w-form"><div class="nav-menu ds-nav-icon ds-color-dark-grey w-embed"><svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
  <path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd" />
</svg></div><input class="search-input nav w-input" autofocus="true" maxlength="256" name="query" placeholder="Search Articles and Pages" type="search" id="search" required=""/><input type="submit" class="search-button nav w-button" value="Search"/><a href="#" class="nav-icon search-close w-inline-block"><div class="nav-menu ds-nav-icon w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.29279 4.29308C4.48031 4.10561 4.73462 4.00029 4.99979 4.00029C5.26495 4.00029 5.51926 4.10561 5.70679 4.29308L9.99979 8.58608L14.2928 4.29308C14.385 4.19757 14.4954 4.12139 14.6174 4.06898C14.7394 4.01657 14.8706 3.98898 15.0034 3.98783C15.1362 3.98668 15.2678 4.01198 15.3907 4.06226C15.5136 4.11254 15.6253 4.18679 15.7192 4.28069C15.8131 4.37458 15.8873 4.48623 15.9376 4.60913C15.9879 4.73202 16.0132 4.8637 16.012 4.99648C16.0109 5.12926 15.9833 5.26048 15.9309 5.38249C15.8785 5.50449 15.8023 5.61483 15.7068 5.70708L11.4138 10.0001L15.7068 14.2931C15.8889 14.4817 15.9897 14.7343 15.9875 14.9965C15.9852 15.2587 15.88 15.5095 15.6946 15.6949C15.5092 15.8803 15.2584 15.9855 14.9962 15.9878C14.734 15.99 14.4814 15.8892 14.2928 15.7071L9.99979 11.4141L5.70679 15.7071C5.51818 15.8892 5.26558 15.99 5.00339 15.9878C4.74119 15.9855 4.49038 15.8803 4.30497 15.6949C4.11956 15.5095 4.01439 15.2587 4.01211 14.9965C4.00983 14.7343 4.11063 14.4817 4.29279 14.2931L8.58579 10.0001L4.29279 5.70708C4.10532 5.51955 4 5.26525 4 5.00008C4 4.73492 4.10532 4.48061 4.29279 4.29308V4.29308Z" fill="currentColor"/>
</svg></div></a></form></div><div class="navigation-container"><nav role="navigation" class="navigation-left w-nav-menu"><a href="/" aria-current="page" class="w-nav-brand w--current"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e21e66410e34945f7f25add_Keboola_logo.svg" alt="Keboola logo" class="keboola-logo"/></a><a href="/about/jobs" class="hiring-badge-link w-inline-block"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/628b726f72ff5645851d4bd2_hiring-3.svg" loading="lazy" alt="" class="hiring-badge"/></a></nav><div class="navigation-center"><div data-delay="0" data-hover="true" class="dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div id="product-menu" class="nav-menu">Product</div><div class="cta-banner w-dyn-list"><div role="list" class="collection-list-16 w-dyn-items"><div role="listitem" class="collection-item-11 w-dyn-item"><a href="http://www.keboola.com/lp/office-hours" class="ds-top-banner-text w-inline-block w-condition-invisible"><div class="text-block-1037">Come and join our Keboola Office Hours. This Thursday from 4:30 to 5:00 pm CET</div></a></div></div></div></div><nav class="navigation-dropdown-centered w-dropdown-list"><div class="dropdown-wrapper"><div class="w-layout-grid navigation-center-grid"><a id="new-features-menu" href="/product/new-releases-2024-q2" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6656f0343647a1dca8b9e073_star-ic.svg"/></div><div class="nav-content-wrap"><div class="menu-hightlight-box"><div class="dropdown-title">New Features</div><div class="menu-hightlight"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6656f0c68ac886a5029a1426_tabler-icon-star-filled.svg" loading="lazy" alt=""/><div>New</div></div></div><div class="dropdown-subtitle">AI-driven capabilities</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="overview-menu" href="/product/overview" class="dropdown-link-boxed w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79decf104a87610d9178f0_overview.svg" class="image-27"/></div><div class="nav-content-wrap"><div class="dropdown-title">Overview</div><div class="dropdown-subtitle">Take control of your data</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="etl-menu" href="/product/etl" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defb4b44cbe3bbd77211_platform.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">ETL</div><div class="dropdown-subtitle">Build ETL pipelines</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="cdc-menu" href="/product/change-data-capture-cdc" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6373b9565fc0b2dbbc3c57c0_CDC.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">CDC</div><div class="dropdown-subtitle">Integrate your data faster</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="flow-builder-menu" href="/product/flow-builder" class="dropdown-link-boxed w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6110cebf818bb7700063d9a5_Pipeline.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Flow builder</div><div class="dropdown-subtitle">Design &amp; deploy data pipelines</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="data-science-menu" href="/product/data-science-with-keboola" class="dropdown-link-boxed w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/621795e13d0c5b26d9a329b0_science.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data Science</div><div class="dropdown-subtitle">The backbone of data science</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="freemium-menu" href="/product/free-plan-features" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="Freemium icon menu" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6092d9188160dc1a49b5773f_Freemium.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Freemium features</div><div class="dropdown-subtitle">Everything for your data stack</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="integrations-menu" href="/product/integrations" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="Integration Icon Menu" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6092d92a2fbdf270bcb79739_integration.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Integrations</div><div class="dropdown-subtitle">Ready-to-use in few clicks</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="development-menu" href="/product/development-branches" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/60effa5f4ae59cff36944624_dev%20branches.svg" class="image-27"/></div><div class="nav-content-wrap"><div class="dropdown-title">Development Branches</div><div class="dropdown-subtitle">Iterate on production</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="data-templates-menu" href="/product/data-templates" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defaf4bbb75b969d0e43_scaffolds.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data templates</div><div class="dropdown-subtitle">Explore data templates</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="data-catalog-menu" href="/product/data-catalog" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defac3821a206e34147c_dataCatalog.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data Catalog</div><div class="dropdown-subtitle">Remove data access friction</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="security-menu" href="/product/security" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="security logo" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8ae9a5ec626f320533c545_security.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Security</div><div class="dropdown-subtitle">GDPR, HIPAA, SOC 2</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="cli-menu" href="/product/cli" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/61a896349a5181e7931b72ac_code.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Keboola as code</div><div class="dropdown-subtitle">Manage data using CLI</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="activity-center-menu" href="/product/activity-center" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/624e9fe5ddddf320d00db7ea_icon-activity.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Activity Center</div><div class="dropdown-subtitle">Health of your projects</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="dbt-menu" href="/product/dbt" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/633a924e1867533e6fe94708_dbt-icon.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">dbt</div><div class="dropdown-subtitle">Orchestrate dbt</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="data-apps-menu" href="/product/data-apps" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/64b6e7ee4f7a7c02832da7c9_data-app-ic.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data Apps</div><div class="dropdown-subtitle">Where Data Comes to Life</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a></div></div><div class="dropdown-pointer"><div class="pointer"></div></div></nav></div><div data-delay="0" data-hover="true" class="dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div id="solutions-menu" class="nav-menu">Solutions</div></div><nav class="navigation-dropdown-centered w-dropdown-list"><div class="dropdown-pointer"><div class="dropdown-wrapper"><div class="w-layout-grid navigation-center-grid"><a id="ecommerce-menu" href="/solutions/ecommerce" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="Cart icon" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/60fe7b953200fc6421f850c6_ecommerce%20(1).svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">eCommerce</div><div class="dropdown-subtitle">Improve your sales with data</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="agency-menu" href="/solutions/marketing-agency" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="Dart icon" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/61013c278cab2f40d86d8d84_Marketing.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Marketing Agency</div><div class="dropdown-subtitle">Show the ROI</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="financial-services-menu" href="/solutions/finance" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="wallet icon" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8452cf6948e1a09921cca5_finance.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Financial Services</div><div class="dropdown-subtitle">Banking without friction</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="retail-menu" href="/solutions/retail" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="retail icon" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8452d3e2c9cc13fce61392_retail.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Retail</div><div class="dropdown-subtitle">Fast customer insights</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="restaurant-menu" href="/solutions/restaurants-hospitality" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="hospitality icon" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8452d110db4f00506b56c9_hospitality.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Restaurants &amp; Hospitality</div><div class="dropdown-subtitle">Run data-driven operations</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="customer-success-menu" href="http://lp.keboola.com/customer-success" target="_blank" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f32b9283ca50875a6b3e443_iconMain.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Customer Success</div><div class="dropdown-subtitle">Support for your success</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="data-mesh-menu" href="/solutions/data-mesh" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="Freemium icon menu" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6092d9188160dc1a49b5773f_Freemium.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data Mesh</div><div class="dropdown-subtitle">Focus on outcomes</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="dealership-menu" href="/solutions/car-dealerships" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62cbef824edab172309eca61_car-icon.svg"/></div><div class="nav-content-wrap"><div class="dropdown-title">Car dealerships</div><div class="dropdown-subtitle">Data-Driven Automation for car dealers</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a><a id="education-menu" href="/solutions/education" class="dropdown-link w-inline-block"><div class="icon-wrap"><img alt="" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/659b9801d7f4a89b6662317f_Group%20717.png"/></div><div class="nav-content-wrap"><div class="dropdown-title">Education</div><div class="dropdown-subtitle">Unlock the Future of Data Education</div></div><div class="dropdown-link-boxed-arrow"><img alt="arrow icon" loading="lazy" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg"/></div></a></div></div><div class="pointer"></div></div></nav></div><div data-delay="0" data-hover="true" class="dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div id="resources-menu" class="nav-menu">Resources</div></div><nav class="navigation-dropdown-centered w-dropdown-list"><div class="dropdown-pointer"><div class="dropdown-wrapper"><div class="w-layout-grid navigation-center-grid"><a id="customer-stories-menu" href="/resources/customer-stories" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defb4b44cb5549d77212_customerStories.svg" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Customer Stories</div><div class="dropdown-subtitle">Read about success</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="webinars-menu" href="/resources/webinars" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5ea6cd877899698b13d68b23_webinars.svg" alt="webinar logo"/></div><div class="nav-content-wrap"><div class="dropdown-title">Webinars</div><div class="dropdown-subtitle">Learn from the best</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="changelog-menu" href="https://changelog.keboola.com/" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defb4b44cb5549d77212_customerStories.svg" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Platform Changelog</div><div class="dropdown-subtitle">One place for changes</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="data-academy-menu" href="https://academy.keboola.com" target="_blank" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5ece2e2d7b8ef66edf98d042_academy.svg" alt="Education icon"/></div><div class="nav-content-wrap"><div class="dropdown-title">Data Academy</div><div class="dropdown-subtitle">Data for everyone</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="blog-menu" href="/blog" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e7a69c6fff99be852db188b_blog.svg" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Blog</div><div class="dropdown-subtitle">All about Keboola</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="partners-menu" href="/resources/partners" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defb4416e92090b436b7_partners.svg" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Partners</div><div class="dropdown-subtitle">An extension of our team</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="expert-program-menu" href="/resources/expert-program" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/60ddaff1a4960878a12b30cd_Expert%20Program.svg" loading="lazy" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Expert Program</div><div class="dropdown-subtitle">Become a Keboola Expert</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a><a id="developer-menu" href="https://developers.keboola.com/" class="dropdown-link w-inline-block"><div class="icon-wrap"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e79defb4b44cbe3bbd77211_platform.svg" alt=""/></div><div class="nav-content-wrap"><div class="dropdown-title">Developer Portal</div><div class="dropdown-subtitle">Development flexibility</div></div><div class="dropdown-link-boxed-arrow"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e669ed2a655f633176dad6e_Combined%20Shape.svg" loading="lazy" alt="arrow icon"/></div></a></div></div><div class="pointer"></div></div></nav></div><a id="integrations-menu" href="/product/integrations" class="menulink w-inline-block"><div id="integrations-menu" class="nav-menu">Integrations</div></a><a id="pricing-menu" href="/pricing" class="menulink w-inline-block"><div id="pricing-menu" class="nav-menu">Pricing</div></a><a href="#" class="nav-icon search-icon w-inline-block"><div class="nav-menu ds-nav-icon ds-color-midnight-blue w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4.00003C6.93913 4.00003 5.92172 4.42146 5.17157 5.17161C4.42143 5.92175 4 6.93917 4 8.00003C4 9.0609 4.42143 10.0783 5.17157 10.8285C5.92172 11.5786 6.93913 12 8 12C9.06087 12 10.0783 11.5786 10.8284 10.8285C11.5786 10.0783 12 9.0609 12 8.00003C12 6.93917 11.5786 5.92175 10.8284 5.17161C10.0783 4.42146 9.06087 4.00003 8 4.00003ZM2 8.00003C1.99988 7.05574 2.22264 6.12475 2.65017 5.28278C3.0777 4.44081 3.69792 3.71163 4.4604 3.15456C5.22287 2.59749 6.10606 2.22825 7.03815 2.07687C7.97023 1.92549 8.92488 1.99625 9.82446 2.28338C10.724 2.57052 11.5432 3.06594 12.2152 3.72933C12.8872 4.39272 13.3931 5.20537 13.6919 6.10117C13.9906 6.99697 14.0737 7.95063 13.9343 8.88459C13.795 9.81855 13.4372 10.7064 12.89 11.476L17.707 16.293C17.8892 16.4816 17.99 16.7342 17.9877 16.9964C17.9854 17.2586 17.8802 17.5094 17.6948 17.6949C17.5094 17.8803 17.2586 17.9854 16.9964 17.9877C16.7342 17.99 16.4816 17.8892 16.293 17.707L11.477 12.891C10.5794 13.5293 9.52335 13.9082 8.42468 13.9862C7.326 14.0641 6.22707 13.8381 5.2483 13.333C4.26953 12.8279 3.44869 12.0631 2.87572 11.1224C2.30276 10.1817 1.99979 9.10147 2 8.00003V8.00003Z" fill="currentColor"/>
</svg></div></a></div><div class="navigation-right"><a id="login-menu" href="https://connection.north-europe.azure.keboola.com/admin/auth/login/forwardTo/%252Fadmin" target="_blank" class="login w-inline-block"><div id="about-menu" class="nav-menu">Login</div></a><a id="try-keboola-menu" href="https://connection.north-europe.azure.keboola.com/wizard" target="_blank" class="button menu text-size-16 w-button">Try Keboola today<br/></a></div></div></div><div data-animation="default" class="navigation-mobile w-nav" data-easing2="ease" data-easing="ease" data-collapse="medium" data-w-id="62dd71b3-b95b-d9db-f005-8bb95001e16e" role="banner" data-duration="400" data-doc-height="1"><div class="navigation-container-mob w-container"><div class="logo-header"><div data-w-id="51e10e91-e4d2-ac27-1ba0-94f939480521" class="searchbar-container"><form action="/search" class="search nav w-form"><div class="nav-menu ds-nav-icon ds-color-dark-grey w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4.00003C6.93913 4.00003 5.92172 4.42146 5.17157 5.17161C4.42143 5.92175 4 6.93917 4 8.00003C4 9.0609 4.42143 10.0783 5.17157 10.8285C5.92172 11.5786 6.93913 12 8 12C9.06087 12 10.0783 11.5786 10.8284 10.8285C11.5786 10.0783 12 9.0609 12 8.00003C12 6.93917 11.5786 5.92175 10.8284 5.17161C10.0783 4.42146 9.06087 4.00003 8 4.00003ZM2 8.00003C1.99988 7.05574 2.22264 6.12475 2.65017 5.28278C3.0777 4.44081 3.69792 3.71163 4.4604 3.15456C5.22287 2.59749 6.10606 2.22825 7.03815 2.07687C7.97023 1.92549 8.92488 1.99625 9.82446 2.28338C10.724 2.57052 11.5432 3.06594 12.2152 3.72933C12.8872 4.39272 13.3931 5.20537 13.6919 6.10117C13.9906 6.99697 14.0737 7.95063 13.9343 8.88459C13.795 9.81855 13.4372 10.7064 12.89 11.476L17.707 16.293C17.8892 16.4816 17.99 16.7342 17.9877 16.9964C17.9854 17.2586 17.8802 17.5094 17.6948 17.6949C17.5094 17.8803 17.2586 17.9854 16.9964 17.9877C16.7342 17.99 16.4816 17.8892 16.293 17.707L11.477 12.891C10.5794 13.5293 9.52335 13.9082 8.42468 13.9862C7.326 14.0641 6.22707 13.8381 5.2483 13.333C4.26953 12.8279 3.44869 12.0631 2.87572 11.1224C2.30276 10.1817 1.99979 9.10147 2 8.00003V8.00003Z" fill="currentColor"/>
</svg></div><input class="search-input nav w-input" autofocus="true" maxlength="256" name="query" placeholder="Search Articles and Pages" type="search" id="search" required=""/><input type="submit" class="search-button nav w-button" value="Search"/><div class="ds-snippet-noscroll w-embed"><meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"></div><a href="#" class="nav-icon search-close-mobile w-inline-block"><div class="nav-menu ds-close-searchbar w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.29279 4.29308C4.48031 4.10561 4.73462 4.00029 4.99979 4.00029C5.26495 4.00029 5.51926 4.10561 5.70679 4.29308L9.99979 8.58608L14.2928 4.29308C14.385 4.19757 14.4954 4.12139 14.6174 4.06898C14.7394 4.01657 14.8706 3.98898 15.0034 3.98783C15.1362 3.98668 15.2678 4.01198 15.3907 4.06226C15.5136 4.11254 15.6253 4.18679 15.7192 4.28069C15.8131 4.37458 15.8873 4.48623 15.9376 4.60913C15.9879 4.73202 16.0132 4.8637 16.012 4.99648C16.0109 5.12926 15.9833 5.26048 15.9309 5.38249C15.8785 5.50449 15.8023 5.61483 15.7068 5.70708L11.4138 10.0001L15.7068 14.2931C15.8889 14.4817 15.9897 14.7343 15.9875 14.9965C15.9852 15.2587 15.88 15.5095 15.6946 15.6949C15.5092 15.8803 15.2584 15.9855 14.9962 15.9878C14.734 15.99 14.4814 15.8892 14.2928 15.7071L9.99979 11.4141L5.70679 15.7071C5.51818 15.8892 5.26558 15.99 5.00339 15.9878C4.74119 15.9855 4.49038 15.8803 4.30497 15.6949C4.11956 15.5095 4.01439 15.2587 4.01211 14.9965C4.00983 14.7343 4.11063 14.4817 4.29279 14.2931L8.58579 10.0001L4.29279 5.70708C4.10532 5.51955 4 5.26525 4 5.00008C4 4.73492 4.10532 4.48061 4.29279 4.29308V4.29308Z" fill="black"/>
</svg></div></a></form></div><a href="/" aria-current="page" class="brand w-nav-brand w--current"><img alt="Keboola logo" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e21e66410e34945f7f25add_Keboola_logo.svg" class="keboola-logo"/></a><a href="/about/jobs" class="w-nav-brand"><img width="90" height="45" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e5e4b7d3f2bf9d910d4bb31_hiring.svg" alt="hiring tag" class="hiringbadge"/></a></div><nav role="navigation" class="mobile-nav w-nav-menu"><div class="mobile-nav-scroll-area"><div data-delay="0" data-hover="false" class="mobile-dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div class="icon-mobile w-icon-dropdown-toggle"></div><div>Product</div></div><nav class="dropdown-list w-dropdown-list"><a href="/product/new-releases-2024-q2" class="dropdown-link-mobile w-inline-block"><div>New Features</div><div class="menu-hightlight"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6656f0c68ac886a5029a1426_tabler-icon-star-filled.svg" loading="lazy" alt=""/><div>New</div></div></a><a href="/product/overview" class="dropdown-link-mobile w-dropdown-link">Overview</a><a href="/product/flow-builder" class="dropdown-link-mobile w-dropdown-link">Flow builder</a><a href="/product/etl" class="dropdown-link-mobile w-dropdown-link">ETL</a><a href="/product/data-science-with-keboola" class="dropdown-link-mobile w-dropdown-link">Data Science</a><a href="/product/data-apps" class="dropdown-link-mobile w-dropdown-link">Data Apps</a></nav></div><div data-delay="0" data-hover="false" class="mobile-dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div class="icon-mobile w-icon-dropdown-toggle"></div><div>Solutions</div></div><nav class="dropdown-list w-dropdown-list"><a href="/solutions/ecommerce" class="dropdown-link-mobile w-dropdown-link">eCommerce</a><a href="/solutions/marketing-agency" class="dropdown-link-mobile w-dropdown-link">Marketing Agency</a><a href="/solutions/finance" class="dropdown-link-mobile w-dropdown-link">Financial Services</a><a href="/solutions/restaurants-hospitality" class="dropdown-link-mobile w-dropdown-link">Restaurants &amp; Hospitality</a></nav></div><div data-delay="0" data-hover="false" class="mobile-dropdown w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><div class="icon-mobile w-icon-dropdown-toggle"></div><div>Resources</div></div><nav class="dropdown-list w-dropdown-list"><a href="/resources/customer-stories" class="dropdown-link-mobile w-dropdown-link">Customer Stories</a><a href="/blog" class="dropdown-link-mobile w-dropdown-link">Blog</a><a href="/resources/partners" class="dropdown-link-mobile w-dropdown-link">Partners</a></nav></div><a href="/product/integrations" class="navbarlink-mobile w-inline-block"><div class="link-navbar-m">Integrations</div></a><a href="/pricing" class="navbarlink-mobile w-inline-block"><div class="link-navbar-m">Pricing</div></a><a href="#" class="navbarlink-mobile navsearch w-inline-block"><div class="nav-menu ds-nav-icon search-icon w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4.00003C6.93913 4.00003 5.92172 4.42146 5.17157 5.17161C4.42143 5.92175 4 6.93917 4 8.00003C4 9.0609 4.42143 10.0783 5.17157 10.8285C5.92172 11.5786 6.93913 12 8 12C9.06087 12 10.0783 11.5786 10.8284 10.8285C11.5786 10.0783 12 9.0609 12 8.00003C12 6.93917 11.5786 5.92175 10.8284 5.17161C10.0783 4.42146 9.06087 4.00003 8 4.00003ZM2 8.00003C1.99988 7.05574 2.22264 6.12475 2.65017 5.28278C3.0777 4.44081 3.69792 3.71163 4.4604 3.15456C5.22287 2.59749 6.10606 2.22825 7.03815 2.07687C7.97023 1.92549 8.92488 1.99625 9.82446 2.28338C10.724 2.57052 11.5432 3.06594 12.2152 3.72933C12.8872 4.39272 13.3931 5.20537 13.6919 6.10117C13.9906 6.99697 14.0737 7.95063 13.9343 8.88459C13.795 9.81855 13.4372 10.7064 12.89 11.476L17.707 16.293C17.8892 16.4816 17.99 16.7342 17.9877 16.9964C17.9854 17.2586 17.8802 17.5094 17.6948 17.6949C17.5094 17.8803 17.2586 17.9854 16.9964 17.9877C16.7342 17.99 16.4816 17.8892 16.293 17.707L11.477 12.891C10.5794 13.5293 9.52335 13.9082 8.42468 13.9862C7.326 14.0641 6.22707 13.8381 5.2483 13.333C4.26953 12.8279 3.44869 12.0631 2.87572 11.1224C2.30276 10.1817 1.99979 9.10147 2 8.00003V8.00003Z" fill="black"/>
</svg></div><div class="link-navbar-m">Search</div></a></div></nav><div class="menu-mob w-nav-button"><div class="hamburger w-icon-nav-menu"></div></div></div></div><div class="nav-bg-fix-mob"></div></main></div><div class="ds-hero-center hero-homepage-section"><div class="ds-container-center center"><a href="/product/new-releases-2024-q2" class="news-box w-inline-block"><div class="ds-tag tag-news"><div>News</div></div><div class="news-box-title">Learn about new features -&gt;</div></a><h1 class="ds-subtitle homepage-hero-title">Self-Service Data Operations Platform</h1><p class="ds-heading-1 homepage-hero-title ds-margin-bottom-m">Enable your company for increased efficiency with automation and AI</p><div class="hero-button-container center w-clearfix"><a href="https://www.keboola.com/contact" target="_blank" id="hero" class="nocodebutton-midle-2 home-fix w-button">Request Demo</a><a href="https://connection.north-europe.azure.keboola.com/wizard" id="hero" class="ds-button-ghost second w-button">Start Free Project</a></div><div class="rating-box center"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/60db244f792719f1ee0a01bc_Stars.svg" loading="lazy" alt="Stars rating" class="_5-stars-image"/><div class="caption rating-box"><strong>Rated 5 stars</strong></div><div class="caption rating-box">on <a href="https://www.g2.com/products/keboola/reviews" target="_blank" class="ds-link-2 rating-box">G2 </a>and <a href="https://www.capterra.com/p/162399/Keboola-Connection/" target="_blank" class="ds-link-2 rating-box">Capterra</a></div></div></div></div><div class="section-15"><div class="hero-center-container"><div class="ds-section-center img"><div class="ds-container-center margin-top-4rem margin-bottom-4-em"><div data-w-id="25aba686-1d72-434f-958a-71bd85261019" style="opacity:0" class="img-center margin-1em-sides ds-card ds-shadow-box ds-margin-bottom-l"><div data-w-id="97b0ea42-9968-d804-4893-7ff157b8d9c7" data-is-ix2-target="1" data-animation-type="lottie" data-src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/619b738932209f14dce1e8c4_data-chaos-without-keboola.json" data-loop="1" data-direction="1" data-autoplay="0" data-renderer="svg" data-default-duration="43" data-duration="0"></div></div><div class="ds-subtitle ds-color-white">Servicing next 🦄 Rohlik, Shipmonk, ProductBoard, Rossum, and 400 more</div></div><div class="containerdefault flex-row-middle padding-8 grid-3-columns-home padding-bottom-8em"><div id="w-node-aa363b35-bd5a-da55-53f2-4a7bbb1872fc-a895c172" class="card-top-homepage"><div class="ds-color-white ds-margin-bottom-s">Major retailer</div><div class="ds-pricing-price-tag"><div class="ds-heading-2 ds-color-blue ds-margin-bottom-s">$100 million</div></div><div class="ds-color-white">in new projects in two years</div></div><div id="w-node-f97127b9-2a89-90ae-7ee1-81220f94d24a-a895c172" class="card-top-homepage"><div><div class="ds-color-white ds-margin-bottom-s">Olfin Car grows<br/></div><div class="ds-pricing-price-tag"><div class="ds-heading-2 ds-color-blue ds-margin-bottom-s">by 760%</div><div class="div-1200-20px"></div><div class="div-1200-20px"></div></div><div class="ds-color-white">online revenue <br/></div></div></div><div id="w-node-a90be82a-60bc-7ff0-c144-22b5e756cea9-a895c172" class="card-top-homepage"><div class="ds-color-white ds-margin-bottom-s">FireHouse Subs supports</div><div class="ds-pricing-price-tag"><div class="ds-heading-2 ds-color-blue ds-margin-bottom-s">1,200 franchises</div></div><div class="ds-color-white">with one person!</div></div></div></div><div class="hero-center-background-holder"><div data-w-id="bbe79481-2954-edc7-8081-4a533d3ba732" data-is-ix2-target="1" class="lottie-home-illustration" data-animation-type="lottie" data-src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/6189792a80bf99aee9e88269_keboola-home-animation-7.json" data-loop="0" data-direction="1" data-autoplay="0" data-renderer="svg" data-default-duration="2" data-duration="0"></div></div></div></div><div class="section-text-centred"><div class="ds-container-center"><h2>Automate and analyze</h2><div class="w-embed"><style>
.spinner-slide { transform: none !important;
}
</style></div><div class="ds-subtitle max-width-800 ds-text-center ds-margin-bottom-l">Keboola enables data engineers, data analysts, and analytics engineers to collaborate on analytics and automation as a team, from extraction, transformation, data management, and pipeline orchestration to reverse ETL.</div><div class="containerdefault flex-row-middle padding-8 grid-3-columns margin-top-2em"><div data-w-id="7af2aff5-30d2-633a-fe5d-24fcd47d948b" class="box box-icon-feature"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/64b6dfff50a2ca5aa9a5bbdb_icon-check.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3">Speed up your data engineering by 10x</div></div><div data-w-id="7af2aff5-30d2-633a-fe5d-24fcd47d948b" class="box box-icon-feature"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/64b6dfff50a2ca5aa9a5bbdb_icon-check.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3">Decouple the dependency on people, particular tools, and linear processes</div></div><div data-w-id="7af2aff5-30d2-633a-fe5d-24fcd47d948b" class="box box-icon-feature"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/64b6dfff50a2ca5aa9a5bbdb_icon-check.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3">Deliver data to all users across your company</div></div></div></div></div><div class="section-text-centred"></div><div class="quote"></div><div class="section-home-easystart"><div class="ds-container-center margin-top-4rem center"><div class="ds-caption ds-color-slate-blue ds-margin-bottom-s">Easy start</div><h2 class="ds-color-white">Create your data project within a minute</h2><div class="ds-subtitle max-width-800 ds-color-white">Start with one click and grow as you need. Run your projects on your own or fast-track them with over 100 expert partners ready to help you.</div></div><div class="ds-container-center margin-top-4rem center"><div data-current="Tab 1" data-easing="ease" data-duration-in="300" data-duration-out="100" class="w-tabs"><div class="ds-container-center padding-bottom-4em blinkingfix w-tab-content"><div data-w-tab="Tab 1" class="w-tab-pane w--tab-active"><div data-w-id="4a19fd4e-c0cd-4066-5f59-162836f926cd" style="opacity:0" class="img-center ds-img-clipping ds-shadow-box"><img sizes="100vw" srcset="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385076f10ac3b5a9ca119e_tab-1-p-800.jpeg 800w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385076f10ac3b5a9ca119e_tab-1-p-1080.jpeg 1080w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385076f10ac3b5a9ca119e_tab-1-p-1600.jpeg 1600w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385076f10ac3b5a9ca119e_tab-1.jpg 1800w" alt="Preview of components in Keboola application" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385076f10ac3b5a9ca119e_tab-1.jpg" loading="lazy"/></div></div><div data-w-tab="Tab 2" class="w-tab-pane"><div data-w-id="161aed83-73db-ee9e-44d3-adf5535a438a" style="opacity:0" class="img-center ds-img-clipping ds-shadow-box"><img sizes="100vw" srcset="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/623850795bbf930e8271a581_tab-2-p-800.jpeg 800w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/623850795bbf930e8271a581_tab-2-p-1080.jpeg 1080w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/623850795bbf930e8271a581_tab-2-p-1600.jpeg 1600w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/623850795bbf930e8271a581_tab-2.jpg 1800w" alt="Preview of transformations in Keboola application" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/623850795bbf930e8271a581_tab-2.jpg" loading="lazy"/></div></div><div data-w-tab="Tab 3" class="w-tab-pane"><div data-w-id="6ceb21c9-f354-d105-ce41-2e36b9c97fbd" style="opacity:0" class="img-center ds-img-clipping ds-shadow-box"><img sizes="100vw" srcset="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385073b3ac6391f4ca5649_tab-3-p-800.jpeg 800w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385073b3ac6391f4ca5649_tab-3-p-1080.jpeg 1080w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385073b3ac6391f4ca5649_tab-3-p-1600.jpeg 1600w, https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385073b3ac6391f4ca5649_tab-3.jpg 1800w" alt="Preview of visual flow builder in Keboola application" src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/62385073b3ac6391f4ca5649_tab-3.jpg" loading="lazy"/></div></div></div><div class="tabs-menu-5 w-tab-menu"><a data-w-tab="Tab 1" data-w-id="fc9b86d7-9d0e-f667-390d-99653e0c1228" class="tab-home-slider w-inline-block w-tab-link w--current"><div class="ds-heading-3 ds-margin-bottom-m">Connect</div><div>Connecting to your data is easy — you can use any one of over 400 connectors. Or use our low code component framework, which enables you to connect to everything in a most convenient way.<br/></div></a><a data-w-tab="Tab 2" class="tab-home-slider w-inline-block w-tab-link"><div class="ds-heading-3 ds-margin-bottom-m">Transform</div><div>There are several ways in which you can transform data in Keboola. <br/>Business users can take the no-code approach and do all the basic stuff. But if you know how to code, you can use Python or SQL or R for the transformation. Or dbt, if you prefer. It&#x27;s up to you. Cooperate easily, and use workspaces. All transformations are automatically versioned. You can use a workspace that provides a copy of the environment and can be run interactively.<br/></div></a><a data-w-tab="Tab 3" class="tab-home-slider w-inline-block w-tab-link"><div class="ds-heading-3 ds-margin-bottom-m">Flow Orchestration</div><div>Schedule automated and repeated executions of data pipelines. You can easily organize the configured components into logical building blocks or full data pipelines.<br/></div></a></div></div></div></div><div class="section-in-base-2 margin-bottom-16"><div class="ds-container-center margin-bottom-16"><div class="ds-caption ds-color-orange ds-margin-bottom-s">Everything you need</div><h2>Modern data stack</h2><p class="ds-subtitle max-width-800">Benefit from the best-of-the-breed tools in a modern data stack. We operate them for you, so you can focus on delivering value.</p></div><div class="containerdefault flex-row-middle padding-8 grid-3-columns margin-bottom-16"><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30ba1a38efacdbdc0877_icon-web%20-%201.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">Work as you need</div><div class="ds-color-slate-gray">ETL/ELT or streaming? Choose the best one for each of your processes. Use more than 400 connectors out of the box, or create a new connector within one hour. <br/></div></div><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30b8cbf67680b125900c_icon-web%20-%203.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">Governance and security</div><div class="ds-color-slate-gray">Metadata for all actions and jobs in the whole pipeline provide a unified observable view and allow real-time responses to events.<br/></div></div><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30b8ea4123556e8fd498_icon-web%20-%204.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">All our tools work seamlessly together</div><div class="ds-color-slate-gray">Sync your work and data across a selection of more than 1,400 apps and DWH without having to do any coding.<br/></div></div><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30ba3cd020f89897891c_icon-web%20-%202.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">Everything fits neatly into your workflow</div><div class="ds-color-slate-gray">Snowflake, dbt, GitHub, Prefect, Airflow, Spark: We operate your favorite tools and databases.<br/></div></div><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30b8213c003d5593a083_icon-web%20-%205.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">Development over the whole pipeline</div><div class="ds-color-slate-gray">When you need to change part of the pipeline, or test a new tool, config, or transformation, Keboola provides 1:1 environments.<br/></div></div><div class="box height"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/662b30b8ea4123556e8fd498_icon-web%20-%204.svg" loading="lazy" alt="" class="medium-icon"/><div class="ds-heading-3 ds-margin-bottom-m">Unlock new workflows</div><div class="ds-color-slate-gray">Pick a process and we will deliver the data and orchestrate the infrastructure for you.<br/></div></div></div></div><div class="testimonial-section"><div class="ds-container-center margin-top-4rem margin-bottom-4-em"><h2>Trusted by enterprises and scale-ups around the world</h2></div><div class="section-logos"><div class="partners-inner"><div class="w-layout-grid grid-companies-logo-6"><div id="w-node-_24acfa0b-8d6b-0fe2-2c45-38c6e60db25a-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f7b3c62da677b3020d6b231_Productboard%20(mono)%201.svg" width="177" alt="Productboard logo transparent" class="logo--small"/></div><div id="w-node-a954a4dd-5bda-3b24-c961-5598a4437886-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f1704078e64d16050fac246_sitelogo_black%201.svg" width="177" alt="HomeCredit logo transparent" class="logo--small"/></div><div id="w-node-_789f36e9-ad68-6621-3343-7c793b884a39-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f1701e6d8bd79567ad28439_mall_group_logo_grey-1024x174%202.svg" width="177" alt="Mall Group logo transparent" class="logo--small"/></div><div id="w-node-_3d1fe283-23ae-1e09-6c71-74edec357199-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f17016e4d00d418611eeb0d_Mask%20Group%201.svg" alt="Kiwi logo transparent" class="logo--small"/></div><div id="w-node-_706c21e7-e10c-3219-ee0e-2fcbf889679c-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5f1701b419e20c2af6862c53_bnp-paribas%201.svg" alt="BNP Paribas Logo Transparent" class="logo--small"/></div><div id="w-node-_0ff356fd-2781-ccc5-30df-4ffe32772cbf-a895c172" class="logo--small"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e6f97b27ef394fd7d591a77_DXC.svg" width="168" alt="DXC technology logo" class="logo--small"/></div></div></div></div></div><div class="testimonial-section"><div class="testimonial-slider"><div data-delay="4000" data-animation="slide" class="slider-testimonial w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="true" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="4" data-duration="450" data-infinite="false" id="w-node-_8098290a-f87a-c641-3585-a70870a725eb-70a725e9"><div class="ds-testimonial-mask w-slider-mask"><div class="slide-testimonial w-slide"><div class="ds-testimonial ds-slider ds-shadow-box"><div class="slidecontent"><div class="ds-quote-text">“I love many things about Keboola, but what I love most is the freedom the platform gives me when coding. I can do anything I want, in any language I want.”</div><div class="div-1200-20px"></div><div class="ds-testimonial-author"><div class="ds-testimonial-photo"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/615d92e210c2e8a978a5fb77_photo-joseph-p.png" loading="lazy" alt=""/></div><div><div class="ds-caption">Josef Pokorny</div><div class="ds-paragraph-small">Data Scientist &amp; Business Analyst at CNC</div></div></div></div></div></div><div class="slide-testimonial w-slide"><div class="ds-testimonial ds-slider ds-shadow-box"><div class="slide-content"><div class="ds-quote-text">“At GoPay, Keboola looks after almost all our data. Using Keboola has made us so much more efficient. I can deliver a use case considerably faster than with any other tool.”</div><div class="div-1200-20px"></div><div class="ds-testimonial-author"><div class="ds-testimonial-photo"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/615d92dfd3ae56117d577396_photo-jiri-z.png" loading="lazy" alt=""/></div><div><div class="ds-caption">JiRI Zezula</div><div class="ds-paragraph-small">Data Analytics Manager at GoPay</div></div></div></div></div></div></div><div class="left-arrow-4 w-slider-arrow-left"><div class="icon-9 w-icon-slider-left"></div></div><div class="right-arrow-4 w-slider-arrow-right"><div class="icon-8 w-icon-slider-right"></div></div><div class="slide-nav testimonial w-slider-nav w-slider-nav-invert w-round"></div></div></div></div><div class="section-pricing img"><div class="ds-container-center padding-sides-0"><div class="ds-caption ds-color-purple ds-margin-bottom-s">Pricing</div><h2>Scale with usage</h2><div class="ds-subtitle max-width-600 ds-margin-bottom-l">Start with free minutes and pay as you grow your usage and add features. <a href="/pricing" class="ds-link">Compare Plans</a></div></div><div class="w-layout-grid ds-pricing-cards-2-colums"><div id="w-node-_326a56c4-3e03-1bed-e8ed-2e656d303480-a895c172" class="ds-card ds-shadow-box w-clearfix"><div class="ds-heading-3 ds-text-center ds-margin-bottom-s">Pay as you go</div><div class="ds-pricing-price-tag"><div class="ds-heading-4">$</div><div class="ds-heading-3">0</div><div class="ds-paragraph ds-color-slate-grey">  per month</div><div class="ds-paragraph ds-color-slate-grey"> per seat</div><div class="div-1200-20px"></div><div class="div-1200-20px"></div></div><div class="div-1200-20px"></div><div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">1 project</div></div></div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">120 minutes of free runtime for the first month</div></div></div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">free refill 60 minutes/month, $0.14 per minute thereafter</div></div></div></div><div class="div-1200-20px"></div><a href="https://connection.north-europe.azure.keboola.com/wizard" target="_blank" id="hero" class="nocodebutton-midle pricing w-button">Start Your Free Project</a></div><div id="w-node-_9af83c90-83eb-1476-9bd9-f75f96094804-a895c172" class="ds-card ds-shadow-box w-clearfix"><div class="ds-heading-3 ds-text-center ds-margin-bottom-s">Enterprise</div><div class="ds-pricing-price-tag"><div class="ds-heading-3">On request</div><div class="div-1200-20px"></div><div class="div-1200-20px"></div></div><div class="div-1200-20px"></div><div class="div-1200-20px"><div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">Private SaaS</div></div></div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">Enterprise SLA</div></div></div><div class="ds-pricing-feature"><div><div class="ds-icon-check w-embed"><svg width="32" height="32" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.9844 16.5625L18.9844 26.5625C18.5938 27.0312 18.0469 27.1875 17.5 27.1875C16.875 27.1875 16.3281 27.0312 15.9375 26.5625L10.9375 21.5625C10.0781 20.7031 10.0781 19.375 10.9375 18.5156C11.7969 17.6562 13.125 17.6562 13.9844 18.5156L17.5 21.9531L25.9375 13.5156C26.7969 12.6562 28.125 12.6562 28.9844 13.5156C29.8438 14.375 29.8438 15.7031 28.9844 16.5625Z" fill="#07BE07"/>
</svg></div></div><div><div class="ds-paragraph-small ds-color-slate-grey">Integrates to enterprise IT systems</div></div></div></div></div><div class="div-1200-20px"></div><a href="/contact" target="_blank" id="hero" class="ds-button-blue-light w-button">Contact Sales</a></div></div></div><div class="blog-section"><div class="blog-title"><h2 class="ds-margin-bottom-l">What&#x27;s new at Keboola</h2></div><div class="blog-slider"><div data-delay="4000" data-animation="slide" class="slider-2 w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="true" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="4" data-duration="450" data-infinite="false"><div class="mask-blog-copy w-slider-mask"><div class="slide-blog w-slide"><div class="collection-list-wrapper-12 w-dyn-list"><div id="w-node-ddafeb43-a036-d58b-01ea-65bee4a1218d-1fcdc6a0" role="list" class="collection-list-11 w-dyn-items"><div role="listitem" class="collection-item-6 w-dyn-item"><a id="read-more-blog" href="/blog/keboola-achieves-g2-leader-in-spring-2024" class="link-block-14 ds-shadow-box-hove w-inline-block"><div class="div-block-102"><img width="200" height="200" alt="" src="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/66194238e6b5dac81cee3eaf_G2spring24_1080x1080.png" sizes="200px" srcset="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/66194238e6b5dac81cee3eaf_G2spring24_1080x1080-p-500.png 500w, https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/66194238e6b5dac81cee3eaf_G2spring24_1080x1080-p-800.png 800w, https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/66194238e6b5dac81cee3eaf_G2spring24_1080x1080.png 1080w" class="imageblogcart"/></div><div class="blog-description"><div class="text-block-943">Community</div><div class="ds-heading-4 blog-slider-title">Keboola Achieves G2 Leader in Spring 2024</div><div class="more"><div class="text-block-942">read more</div><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8758653d7b02bb4c84de2d_Combined%20Shape.svg" alt="arrow icon" class="linkarrow"/></div></div></a></div></div></div></div><div class="slide-blog w-slide"><div class="collection-list-wrapper-12 w-dyn-list"><div id="w-node-d3f4c59e-c647-db0c-7bce-db98c0865ea9-1fcdc6a0" role="list" class="collection-list-11 w-dyn-items"><div role="listitem" class="collection-item-6 w-dyn-item"><a href="/blog/april-newsletter-discover-the-latest-from-keboola" class="link-block-14-copy ds-shadow-box-hove w-inline-block"><div class="div-block-102"><img width="200" height="200" alt="" src="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/6638f6c7e342d3bb60a44793_30.png"/></div><div class="blog-description"><div class="text-block-943">Newsletters</div><div class="ds-heading-4 blog-slider-title">April Newsletter: Discover The Latest From Keboola</div><div class="more"><div class="text-block-942">read more</div><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8758653d7b02bb4c84de2d_Combined%20Shape.svg" alt="arrow icon" class="linkarrow"/></div></div></a></div></div></div></div><div class="slide-blog w-slide"><div class="collection-list-wrapper-12 w-dyn-list"><div id="w-node-aadf0950-0adf-6c70-ebdf-94cb1e11d5d5-1fcdc6a0" role="list" class="collection-list-11 w-dyn-items"><div role="listitem" class="collection-item-6 w-dyn-item"><a href="/blog/march-newsletter-discover-the-latest-from-keboola" class="link-block-14-copy ds-shadow-box-hove w-inline-block"><div class="div-block-102"><img width="200" height="200" alt="" src="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/660d2599a0165fe16361c1ba_Group%208859.jpg"/></div><div class="blog-description"><div class="text-block-943">Newsletters</div><div class="ds-heading-4 blog-slider-title">March Newsletter: Discover The Latest From Keboola</div><div class="more"><div class="text-block-942">read more</div><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8758653d7b02bb4c84de2d_Combined%20Shape.svg" alt="arrow icon" class="linkarrow"/></div></div></a></div></div></div></div><div class="slide-blog w-slide"><div class="collection-list-wrapper-12 w-dyn-list"><div id="w-node-_3dab48a5-76ac-386d-829c-0cb822cc39a6-1fcdc6a0" role="list" class="collection-list-11 w-dyn-items"><div role="listitem" class="collection-item-6 w-dyn-item"><a href="/blog/keboola-queens-celebrating-women-making-waves-in-data-ai" class="link-block-14 ds-shadow-box-hove w-inline-block"><div class="div-block-102"><img width="200" height="200" alt="" src="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/65eb0c05f58cf5bf7bdbf78f_2.png"/></div><div class="blog-description"><div class="text-block-943">Life at Keboola</div><div class="ds-heading-4 blog-slider-title">Keboola Queens: Celebrating Women Making Waves in Data &amp; AI</div><div class="more"><div class="text-block-942">read more</div><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8758653d7b02bb4c84de2d_Combined%20Shape.svg" alt="arrow icon" class="linkarrow"/></div></div></a></div></div></div></div><div class="slide-blog w-slide"><div class="collection-list-wrapper-12 w-dyn-list"><div id="w-node-_52d509e8-8c0b-094b-95cc-73c335d4d062-1fcdc6a0" role="list" class="collection-list-11 w-dyn-items"><div role="listitem" class="collection-item-6 w-dyn-item"><a href="/blog/february-newsletter-2024" class="link-block-14 ds-shadow-box-hove w-inline-block"><div class="div-block-102"><img width="200" height="200" alt="" src="https://cdn.prod.website-files.com/5e6f9b297ef3941db2593ba1/65e595aade1a0cedfa772281_data%20governance%20tools_400x400.png"/></div><div class="blog-description"><div class="text-block-943">Newsletters</div><div class="ds-heading-4 blog-slider-title">February Newsletter: Discover The Latest From Keboola</div><div class="more"><div class="text-block-942">read more</div><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5e8758653d7b02bb4c84de2d_Combined%20Shape.svg" alt="arrow icon" class="linkarrow"/></div></div></a></div></div></div></div></div><div class="left-arrow-4 w-slider-arrow-left"><div class="icon-9 w-icon-slider-left"></div></div><div class="right-arrow-4 w-slider-arrow-right"><div class="icon-8 w-icon-slider-right"></div></div><div class="slide-nav blog w-slider-nav w-slider-nav-invert w-round"></div></div></div></div><div id="footercta" class="footer-cta footercta"><div class="dark-div-1200 footer"><div class="mycontainter-footer-cta"><div class="textcta-div footercta"><div class="headingfooter-div"><h2 id="CTA" class="heading-cta-footer">Ready to get started? Request a free demo, or get in touch today.</h2></div><div class="cta-div w-clearfix"><a id="try-keboola-footer" href="https://connection.north-europe.azure.keboola.com/wizard" class="buttonblue stacked w-button">Try Keboola</a><a id="request-demo-footer" href="/form/contact-us" target="_blank" class="secondary-button button-cta w-button">Request a Demo</a><div class="div-1200-10px"></div></div></div><div class="divider footercta"></div></div></div></div><div id="footer" class="footer--dark"><div class="divider footer-dark"></div><div class="mycontainter-footer-cta"><div class="w-layout-grid grid-5"><div class="footer-product"><div class="ds-heading-4 footer-title">PRODUCT</div><ul role="list" class="list w-list-unstyled"><li class="footeritem"><a href="/product/overview" class="link-block-20 w-inline-block"><div class="footer-link dark">Overview</div></a></li><li class="footeritem"><a href="mailto:[email protected]?subject=Support" class="link-block-20 w-inline-block"><div class="footer-link dark">Support</div></a></li><li class="footeritem"><a href="https://help.keboola.com/?_ga=2.42726370.697307408.1584884605-1276846014.1582907021" class="w-inline-block"><div class="footer-link dark">Help</div></a></li><li class="footeritem"><a href="https://developers.keboola.com/?_ga=2.42726370.697307408.1584884605-1276846014.1582907021" class="w-inline-block"><div class="footer-link dark">Developers</div></a></li><li class="footeritem"><a href="https://status.keboola.com/?_ga=2.210369490.697307408.1584884605-1276846014.1582907021" class="link-block-21 w-inline-block"><div class="footer-link dark">Status</div></a></li></ul></div><div><div class="ds-heading-4 footer-title">RESOURCES</div><ul role="list" class="list w-list-unstyled"><li class="footeritem"><a href="/resources/customer-stories" class="w-inline-block"><div class="footer-link dark">Customer Stories</div></a></li><li class="footeritem"><a href="/about/jobs" class="w-inline-block"><div class="footer-link dark">Careers</div></a></li><li class="footeritem"><a href="/about/this-is-keboola" target="_blank" class="w-inline-block"><div class="footer-link dark">About</div></a></li><li class="footeritem"><a href="/resources/partners" class="w-inline-block"><div class="footer-link dark">Partners</div></a></li><li class="footeritem"><a href="/blog" target="_blank" class="w-inline-block"><div class="footer-link dark">Blog</div></a></li><li><a href="https://github.com/keboola" class="w-inline-block"><div class="footer-link dark">Github Sources</div></a></li></ul></div><div id="w-node-a3206230-e35c-66b4-4551-bd9d1174b045-1a11bcbd" class="footer-legal"><div class="ds-heading-4 footer-title">LEGAL</div><ul role="list" class="list w-list-unstyled"><li class="footeritem"><a href="/contact" class="w-inline-block"><div class="footer-link dark">Contact</div></a></li><li class="footeritem"><a href="/terms-and-conditions-rules-of-conduct" class="w-inline-block"><div class="footer-link dark">Terms &amp; Conditions</div></a></li><li class="footeritem"><a href="/privacy-policy" class="w-inline-block"><div class="footer-link dark">Privacy Policy</div></a></li><li class="footeritem"><a href="/software-subscription-agreement" class="w-inline-block"><div class="footer-link dark">Subscription Agreement </div></a></li><li class="footeritem"><a href="/free-plan-terms-and-conditions" class="w-inline-block"><div class="footer-link dark">Free Plan Terms</div></a></li><li class="footeritem"><a href="/product/security" class="link-block-22 w-inline-block"><div class="footer-link dark">Security</div></a></li></ul></div><div id="w-node-a3206230-e35c-66b4-4551-bd9d1174b061-1a11bcbd" class="footer-subscribe"><div class="ds-heading-4 footer-title ds-margin-bottom-m">KEBOOLA NEWSLETTER</div><div class="newsletter w-form"><form id="wf-form-Newsletter" name="wf-form-Newsletter" data-name="Newsletter" method="get" class="form-4 w-clearfix" data-wf-page-id="646e2fa52d2671e4a895c172" data-wf-element-id="a3206230-e35c-66b4-4551-bd9d1174b065"><a id="subscribe-footer" data-w-id="a3206230-e35c-66b4-4551-bd9d1174b066" href="#" class="buttonblue subscribe-newsletter-button w-button">Subscribe</a></form><div class="success-message-2 w-form-done"><div class="text-block-923">Thank you! Your submission has been received!</div></div><div class="error-message-2 w-form-fail"><div class="text-block-924">Oops! Something went wrong while submitting the form.</div></div></div><div class="footer-p margin-bottom-4-em">#noSpamWePromise!</div><div class="ds-heading-4 footer-title margin-bottom-4">FOLLOW US</div><div class="followuslinks"><a href="https://twitter.com/keboola" target="_blank" class="sociallink w-inline-block"><div class="icon-footer w-embed"><svg width="20" height="17" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 1.92396C19.2648 2.25078 18.4735 2.47123 17.6433 2.56988C18.491 2.0624 19.1409 1.25855 19.4475 0.299616C18.6546 0.770152 17.7768 1.11158 16.8418 1.2959C16.0936 0.498549 15.0271 0 13.8469 0C11.5811 0 9.74403 1.83708 9.74403 4.10328C9.74403 4.42442 9.78016 4.73743 9.8504 5.03826C6.44013 4.86694 3.41636 3.23366 1.39253 0.751071C1.03932 1.3568 0.837139 2.06159 0.837139 2.81428C0.837139 4.23766 1.56142 5.49378 2.66244 6.22942C1.99013 6.2079 1.35721 6.02318 0.803849 5.71585C0.803443 5.7329 0.803443 5.75036 0.803443 5.76782C0.803443 7.75552 2.21789 9.41356 4.09516 9.79112C3.75089 9.8845 3.38834 9.93484 3.01403 9.93484C2.74933 9.93484 2.49234 9.90926 2.24184 9.86095C2.76435 11.491 4.27948 12.6777 6.07474 12.7106C4.67044 13.8112 2.90157 14.4672 0.978828 14.4672C0.647951 14.4672 0.321133 14.4478 0 14.4096C1.81637 15.5744 3.97296 16.2532 6.28991 16.2532C13.8376 16.2532 17.9644 10.001 17.9644 4.57869C17.9644 4.40087 17.9607 4.22345 17.953 4.04726C18.7544 3.46995 19.4503 2.74689 20 1.92396Z" fill="currentColor"/>
</g>
</svg></div></a><a href="https://www.facebook.com/KeboolaHQ/" target="_blank" class="sociallink w-inline-block"><div class="icon-footer w-embed"><svg width="10" height="20" viewBox="0 0 10 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.29331 6.47609H6.12834V4.40033C6.12834 3.62078 6.645 3.43904 7.0089 3.43904C7.37197 3.43904 9.24239 3.43904 9.24239 3.43904V0.0120058L6.16643 0C2.75181 0 1.97475 2.55599 1.97475 4.19168V6.47609H0V10.0075H1.97475C1.97475 14.5394 1.97475 20 1.97475 20H6.12834C6.12834 20 6.12834 14.4856 6.12834 10.0075H8.93107L9.29331 6.47609Z" fill="currentColor"/>
</g>
</svg></div></a><a href="https://www.linkedin.com/company/keboola/" target="_blank" class="sociallink w-inline-block"><div class="icon-footer w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 19.116V11.7207C20 7.75841 17.8847 5.91463 15.0647 5.91463C12.789 5.91463 11.7693 7.16676 11.201 8.04508V6.21772H6.91356C6.97039 7.42817 6.91356 19.116 6.91356 19.116H11.201V11.9126C11.201 11.5281 11.2288 11.1429 11.3424 10.8676C11.6518 10.0972 12.3571 9.29974 13.5411 9.29974C15.0931 9.29974 15.7132 10.4824 15.7132 12.2157V19.1166H20V19.116ZM2.39692 4.45728C3.89152 4.45728 4.82288 3.46593 4.82288 2.22769C4.7951 0.962935 3.89152 0 2.42533 0C0.959146 0 0 0.962304 0 2.22769C0 3.46593 0.930732 4.45728 2.36977 4.45728H2.39692ZM4.54063 19.116V6.21772H0.253836V19.116H4.54063Z" fill="currentColor"/>
</g>
</svg></div></a><a href="https://www.youtube.com/channel/UChlGdJBp2rGJ5t6a062WfDw" target="_blank" class="sociallink w-inline-block"><div class="icon-footer w-embed"><svg width="24" height="17" viewBox="0 0 24 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.3766 0.508495C22.4092 0.788331 23.2225 1.61292 23.4985 2.65992C24 4.55768 24 8.51718 24 8.51718C24 8.51718 24 12.4767 23.4985 14.3744C23.2225 15.4214 22.4092 16.2117 21.3766 16.4915C19.505 17 12 17 12 17C12 17 4.49503 17 2.62336 16.4915C1.59077 16.2117 0.777523 15.4214 0.501503 14.3744C0 12.4767 0 8.51718 0 8.51718C0 8.51718 0 4.55768 0.501503 2.65992C0.777523 1.61292 1.59077 0.788375 2.62336 0.508495C4.49503 0 12 0 12 0C12 0 19.505 0 21.3766 0.508495ZM9.54544 4.92225V12.1121L15.8181 8.51727L9.54544 4.92225Z" fill="currentColor"/>
</g>
</svg></div></a></div></div></div><div class="terms-of-use"><div class="footerdisclaimer">© <a href="#" class="linkfooter">Keboola</a> 2020 – <a href="/terms-and-conditions-rules-of-conduct" class="linkfooter">Terms &amp; Conditions</a> &amp; <a href="/privacy-policy" class="linkfooter">Privacy</a></div><a href="#" class="linkfooter">© Keboola 2024</a><a href="/cookie-policy" class="linkfooter">Cookie</a><a href="/terms-and-conditions-rules-of-conduct" class="linkfooter"><strong> | </strong> Terms &amp; Conditions <strong> | </strong></a><a href="/privacy-policy" class="linkfooter">Privacy</a></div></div><div class="newsletterpopup"><div class="pop-up-form"><h2 class="ds-heading-2">Join our newsletter</h2><div class="ds-paragraph-small margin-bottom-10">#noSpamWePromise</div><div class="form-block-2 w-form"><form id="wf-form-newsletter" name="wf-form-newsletter" data-name="newsletter" method="get" class="form newsletterform w-clearfix" data-wf-page-id="646e2fa52d2671e4a895c172" data-wf-element-id="8fe957a4-edbd-db9b-c3dd-6b64a82ab448"><input class="ds-text-field business-email-newsletter ds-margin-bottom-m w-input" maxlength="256" name="Business-Email" data-name="Business Email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" placeholder="Business email" type="email" id="business-email" required=""/><div data-sitekey="6LcncIYpAAAAAHhy26mTKFe0cJgWRbGtI_vi9Tif" class="w-form-formrecaptcha g-recaptcha g-recaptcha-error g-recaptcha-disabled"></div><div class="ds-margin-bottom-l">By subscribing to our newsletter you agree with Keboola Czech s.r.o. <a href="/privacy-policy" class="ds-link-2">Privacy Policy</a>.</div><input type="submit" data-wait="Please wait..." class="buttonblue newsletterform w-button" value="Subscribe"/></form><div data-form-id="wf-form-newsletter" class="success-message mailchimp w-form-done"><div class="text-block-955">Thank you! Your submission has been received!</div></div><div class="w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div><div data-w-id="8fe957a4-edbd-db9b-c3dd-6b64a82ab452" class="cross"><img src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/5ea825cef5ced814fa2cf8c3_cross.svg" alt="cross-icon" class="close"/></div></div></div></div><div class="cookies-banner"><div fs-cc="banner" class="ck-cookie-w"><div class="ck-modal"><div class="div-block-189"><div class="ck-modal__content-w"><div class="ds-heading-3 margin-bottom-4">We use cookies.</div><div class="ds-paragraph-small">We use cookies to make Keboola&#x27;s website a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. By clicking “Accept”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage and assist in our marketing efforts. To learn more about the different cookies we&#x27;re using, check out our <a href="/cookie-policy">Cookie Policy</a></div></div><div class="ck-modal__btns-w is--small"><a fs-cc="allow" href="#" class="ck-button-w is--fullwidth w-inline-block"><div class="ck-button__txt">Accept</div></a><a fs-cc="open-preferences" href="#" class="ck-button-w is--secondary is--fullwidth w-inline-block"><div class="ck-button__txt">Cookie Settings</div></a></div><a fs-cc="close" href="#" class="ck-modal__exit-btn w-inline-block"><div class="ck__exitbtn__line is--left"></div><div class="ck__exitbtn__line is--right"></div><div class="ck-sr__only">Close Cookie Popup</div></a></div><div class="ck-attr-btn">Made by <a href="https://flinch77.com&amp;ref=cookie-cloneable" target="_blank">Flinch 77</a></div></div><div class="ck-css-styles w-embed"><style>

.ck-preference__bg {
	-webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
}

</style></div></div><div fs-cc-scroll="disable" fs-cc="preferences" class="ck-preference-w"><div fs-cc="close" class="ck-preference__bg"></div><div class="ck-preference__scroll-w"><div class="ck-modal-pref"><a fs-cc="close" href="#" class="ck-modal__exit-btn-2 w-inline-block"><div class="ck__exitbtn__line is--left"></div><div class="ck__exitbtn__line is--right"></div><div class="ck-sr__only">Close Cookie Preference Manager</div></a><div class="ck-modal__content-w"><div class="ds-heading-3 margin-bottom-4">Cookie Settings</div><div class="ds-paragraph-small">By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage and assist in our marketing efforts. <a href="/cookie-policy" class="ck-txt-link">More info</a></div><div class="ck-form-w w-form"><form id="ck-form" name="wf-form-ck-form" data-name="ck-form" method="get" class="ck-form" data-wf-page-id="646e2fa52d2671e4a895c172" data-wf-element-id="24c1cfcb-5681-545e-b6ab-3c6519490af5"><div class="ck-radio-w is--not-allowed w-clearfix"><div class="ck-radio__btn is--checked is--not-allowed"></div><div class="ck-radio__label is--not-allowed">Strictly Necessary (Always Active)</div><div class="ck-radio__desc is--not-allowed">Cookies required to enable basic website functionality.</div></div><label class="w-checkbox ck-radio-w w-clearfix"><div class="w-checkbox-input w-checkbox-input--inputType-custom ck-radio__btn"></div><input type="checkbox" id="fs__marketing" name="fs__marketing" data-name="fs__marketing" fs-cc-checkbox="marketing" style="opacity:0;position:absolute;z-index:-1"/><span for="fs__marketing" class="ck-radio__label w-form-label">Marketing</span><div class="ck-radio__desc">Cookies used to deliver advertising that is more relevant to you and your interests.</div></label><label class="w-checkbox ck-radio-w w-clearfix"><div class="w-checkbox-input w-checkbox-input--inputType-custom ck-radio__btn"></div><input type="checkbox" id="fs__personalization" name="fs__personalization" data-name="fs__personalization" fs-cc-checkbox="personalization" style="opacity:0;position:absolute;z-index:-1"/><span for="fs__personalization" class="ck-radio__label w-form-label">Personalization<br/></span><div class="ck-radio__desc">Cookies allowing the website to remember choices you make (such as your user name, language, or the region you are in).</div></label><label class="w-checkbox ck-radio-w w-clearfix"><div class="w-checkbox-input w-checkbox-input--inputType-custom ck-radio__btn"></div><input type="checkbox" id="fs__analytics" name="fs__analytics" data-name="fs__analytics" fs-cc-checkbox="analytics" style="opacity:0;position:absolute;z-index:-1"/><span for="fs__analytics" class="ck-radio__label w-form-label">Analytics<br/></span><div class="ck-radio__desc">Cookies helping understand how this website performs, how visitors interact with the site, and whether there may be technical issues.</div></label><div class="ck-modal__btns-w in-pref-manger"><a fs-cc="allow" href="#" class="ck-button-w-2 is--fullwidth w-inline-block"><div class="ck-button__txt">Accept All Cookies</div></a><a fs-cc="submit" href="#" class="ck-button-w-2 is--secondary is--fullwidth w-inline-block"><div class="ck-button__txt">Save Settings</div></a></div></form><div class="w-form-done"><div class="text-block-1036">Made by <a href="https://flinch77.com&amp;ref=cookie-cloneable" target="_blank">Flinch 77</a></div></div><div class="w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div></div></div></div></div></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=5e21dc6f4c5acf29c35bb32c" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/5e21dc6f4c5acf29c35bb32c/js/keboola-website.1d46b3329.js" type="text/javascript"></script><script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script>

<script>
$("#print").click(function() { window.print(); });

$(document).ready(function(){
  
  
  document.querySelectorAll('.w-form-done').forEach(el=>{
    const dataFormId = el.getAttribute('data-form-id');

    if (dataFormId === null) {
        return;
    }

    const formEl = document.getElementById(dataFormId);
    if (formEl === null) {
        return;
    }

    const formDoneChanged = function() {
        if (el.style.display != 'none' && typeof onFormSubmit === 'function') {
            onFormSubmit(formEl)
        }

    }

    var observer = new MutationObserver(formDoneChanged);

    observer.observe(el, {
        attributes: true,
        attributeFilter: ['style']
    });
  })

	
  var pagePath = window.location.href;
  var pageTitle = document.title;
  var pageId = $("html").attr("data-wf-page");
  var bodyClass = $("body").hasClass("static-page"); 
  var bodyClass2 = $("body").hasClass("blog"); 
  var bodyClass3 = $("body").hasClass("lp"); 
  
  var categories = [];
  var location = window.location.pathname;
  var directoryPath = location.substring(0, location.lastIndexOf("/")+1);
  var directoryName = location.substring(location.lastIndexOf("/")+1);
  categories.push(directoryPath);
  categories.push(directoryName);
  
  if(directoryPath!= "" ){

    if(bodyClass == true){
      dataLayer.push({
        'event': 'Pageview',
        'pagePath': pagePath,
        'pageTitle': pageTitle,
        'visitorType': 'customer',
        'id': pageId,
        'category': categories,
        'section': 'web',
      });
    }
    
    if(bodyClass2 == true){
      dataLayer.push({
        'event': 'Pageview',
        'pagePath': pagePath,
        'pageTitle': pageTitle,
        'visitorType': 'customer',
        'id': pageId,
        'category':categories,
        'section': 'blog',
      });
    }

    if(bodyClass3 == true){
      dataLayer.push({
        'event': 'Pageview',
        'pagePath': pagePath,
        'pageTitle': pageTitle,
        'visitorType': 'customer',
        'id': pageId,
        'category': categories,
        'section': 'lp',
      });
    }
  }

});

$(document).ready(function(){
  
  // Contact form variables
/*  $("#submit-contact").click(function(){
    var Cname = $('.business-name').val();
    var Cemail = $('.business-email').val(); 
    var visitorId = $.md5(Cemail);
    var lead_id = $.md5(Cname);
    dataLayer.push({
      'event': 'lead',
      'email': Cemail,
      'visitor_id': visitorId,
      'lead_id': lead_id,
    });
  })
*/
  
  // Click on wizard button
  $("#try-keboola-menu, #try-keboola-footer, #try-keboola-hero, #try-keboola-footer-launch, #hero, #start-free-trial-hero-launch, #start-free-trial-hero-launch2, #etl-it, #data-free-forever, #get-data-ready, #try-no-code, #try-keboola-yourself, #create-account, #use-for-free, #components, #try-keboola-cta").click(function(){
    dataLayer.push({
      'event': 'wizard_start'
    });
  });

  // Function to handle the newsletter form submission
/*  $(".newsletterform").submit(function(event) {
    event.preventDefault();

    const Cemail = $('.business-email-newsletter').val();
    const visitorId = $.md5(Cemail);

    dataLayer.push({
      'event': 'newsletter_popup_submit',
      'email': Cemail,
      'visitor_id': visitorId
    });
  });
*/
  // Function to handle the newsletter popup open event
  $(".subscribe-newsletter-button").click(function() {
    dataLayer.push({
      'event': 'newsletter_popup_open'
    });
  });

  // Partner opportunity form submit
/*  $("#submit-partner-opp").click(function(){
    const Cemail = $('.partner-email').val(); 
    const visitorId = $.md5(Cemail);  
    
    dataLayer.push({
      'event': 'partner_lead',
      'email': Cemail,
      'visitor_id': visitorId,
    });
  });
*/
  // Component form submission
/*  $("#wf-form-component").submit(function(event) {
    event.preventDefault();

    const Cemail = $('.component-request').val();
    const visitorId = $.md5(Cemail);

    dataLayer.push({
      'event': 'lead_component',
      'email': Cemail,
      'visitor_id': visitorId,
    });
  });
*/
  // Webinar form submission
/*  $("#webinar-past-form").submit(function(event) {
    event.preventDefault();

    const Cemail = $('.business-email-webinar').val(); 
    const visitorId = $.md5(Cemail); 
    const Pname = document.title;  

    dataLayer.push({
      'event': 'webinar_form_submit',
      'email': Cemail,
      'visitor_id': visitorId,
      'name': Pname,
    });
  });
*/
});

$(document).ready(function(){
  dataLayer.push({
    'event': 'newsletter_popup_open',
  });
});
  
  
 /*document.addEventListener('DOMContentLoaded', function () {
  var form = document.getElementById('wf-form-gated-content');

  if (form) {
    form.addEventListener('submit', function (event) {
      event.preventDefault();
      var isFormSubmissionSuccessful = true;

      if (isFormSubmissionSuccessful) {
        var Pname = document.title; 
        var Cemail = $('.business-email-gated-content').val();
        var visitorId = $.md5(Cemail);

        dataLayer.push({
          'event': 'gated_content_signup',
          'email': Cemail,
          'visitor_id': visitorId,
          'name': Pname,
        }); 

  
      }
    });
  }
   
});  */
</script>




<script>
  // Function to set a cookie with a given name, value, and expiration date
  function setCookie(name, value, days) {
    var expires = "";
    if (days) {
      var date = new Date();
      date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);
      expires = "; expires=" + date.toUTCString();
    }
    document.cookie = name + "=" + value + expires + "; path=/";
  }

  // Function to get the value of a cookie by name
  function getCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
      var c = ca[i];
      while (c.charAt(0) === ' ') c = c.substring(1, c.length);
      if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length);
    }
    return null;
  }

  // Check if UTM parameters are present in the URL
  var queryString = window.location.search;
  var URLSearchParams_wb = new URLSearchParams(queryString);

  const utmParameters = ["utm_source", "utm_medium", "utm_campaign"];

  for (const utm_element of utmParameters) {
    if (URLSearchParams_wb.has(utm_element)) {
      var value = URLSearchParams_wb.get(utm_element);
      // Save UTM parameter to cookie with a one-day expiration
      setCookie(utm_element, value, 1);
    }
  }

  // Update form fields with UTM values from cookies
  $("form").each(function (index) {
    for (const utm_element of utmParameters) {
      var cookieValue = getCookie(utm_element);
      if (cookieValue) {
        $(this).find("." + utm_element).val(cookieValue);
      }
    }
  });
</script>

<style>
@media print{
  .social-media-share, .footer, .footercta, ._2So8ItJQ9P6IqaCUlCO-2f-flex-center-CHAT-_3S6qOFxcrgO0yM2f9_l6JZ-_364Vk0R65B1GXViJwyA9fM { 
    display: none;
  }
}
</style>
</body></html>

Latest requests

# Url Url Source Date
1 https://www.keboola.com?utm_source… 2024-06-07 02:45:23
2 https://thebolditalic.com/?gi=7125… 2024-06-07 02:45:20
3 https://thebolditalic.com/?gi=4e91… 2024-06-07 02:45:18
4 https://thebolditalic.com/?gi=a447… 2024-06-07 02:45:17
5 https://labyrinthragna1.medium.com/ 2024-06-07 02:45:17
6 https://filedn.eu/lXvDNJGJo3S0aUrN… 2024-06-07 02:45:16
7 https://thebolditalic.com/?gi=5ee3… 2024-06-07 02:45:16
8 https://thebolditalic.com/?gi=1137… 2024-06-07 02:45:14
9 https://thebolditalic.com/?gi=b30b… 2024-06-07 02:45:14
10 https://thebolditalic.com/?gi=5dec… 2024-06-07 02:45:10
11 https://thebolditalic.com/?gi=216f… 2024-06-07 02:45:10
12 https://thebolditalic.com/?gi=2aa0… 2024-06-07 02:45:06
13 https://images-google-lt.cdn.amppr… 2024-06-07 02:45:05
14 http://010-8959-5420.1004114.co.kr… 2024-06-07 02:45:04
15 https://mmsi-pkc.auth0.com/login?s… 2024-06-07 02:45:04
16 https://thebolditalic.com/?gi=1c8b… 2024-06-07 02:45:02
17 https://thebolditalic.com/?gi=fbd9… 2024-06-07 02:44:58
18 https://afonsoerick.blogspot.com/?… 2024-06-07 02:44:58
19 https://thebolditalic.com/?gi=e5a6… 2024-06-07 02:44:58
20 https://thebolditalic.com/?gi=c720… 2024-06-07 02:44:54