External embed disabledThis external media block was disabled in the local clone.
');}return node;}; const patchInsertion=(method)=>{const original=Node.prototype[method];if(typeof original!=="function"){return;}Node.prototype[method]=function(node,...rest){return original.call(this,neutralizeNode(node),...rest);};}; patchInsertion("appendChild"); patchInsertion("insertBefore"); window.__codexNotifyExternalLink=notify; window.__codexHandleExternalNavigation=(url)=>{notify(url);return false;}; window.YT=window.YT||{Player:function(){return createStub();},ready(cb){if(typeof cb==="function"){cb();}}}; window.onYouTubeIframeAPIReady=window.onYouTubeIframeAPIReady||(()=>{}); window._wq=window._wq||[]; window._wq.push=()=>0; window.Wistia=window.Wistia||{api(){return createStub();}}; window.Sentry=window.Sentry||{init(){},captureException(){},captureMessage(){},addBreadcrumb(){},setUser(){}}; window.hbspt=window.hbspt||{forms:{create:(options={})=>{const target=typeof options.target==="string"?document.querySelector(options.target):null;if(target&&!target.querySelector("form")){target.innerHTML=formPlaceholderHtml;}return {};}}}; window.__codexCreateSplide=function(selector,options){try{if(typeof selector==="string"&&!document.querySelector(selector)){return createStub();}if(typeof window.Splide!=="function"){return createStub();}return new window.Splide(selector,options);}catch{return createStub();}}; const patchJetStickyOnValue=(candidate)=>{if(candidate&&candidate.fn&&typeof candidate.fn.jetStickySection!=="function"){candidate.fn.jetStickySection=function(){return this;};}return candidate;}; try{let currentJquery=patchJetStickyOnValue(window.jQuery);let currentDollar=patchJetStickyOnValue(window.$);Object.defineProperty(window,"jQuery",{configurable:true,get(){return currentJquery;},set(value){currentJquery=patchJetStickyOnValue(value);}});Object.defineProperty(window,"$",{configurable:true,get(){return currentDollar||currentJquery;},set(value){currentDollar=patchJetStickyOnValue(value);}});}catch{} const installJetSticky=()=>{const jq=window.jQuery||window.$;if(!jq||!jq.fn){return false;}if(typeof jq.fn.jetStickySection!=="function"){jq.fn.jetStickySection=function(){return this;};}return true;}; const fillPlaceholder=(node,html)=>{if(!node||node.querySelector?.(".codex-embed-placeholder")){return;}node.innerHTML=html;}; const inferSiteKey=()=>{const first=window.location.pathname.split("/").filter(Boolean)[0]||"global";return["sg","sa","in","jp"].includes(first)?first:"global";}; const ensureHiddenInput=(form,name,value)=>{let input=form.querySelector('input[name="'+name+'"]');if(input){input.value=value;return;}input=document.createElement("input");input.type="hidden";input.name=name;input.value=value;form.prepend(input);}; const bindLocalForm=(form)=>{if(form.dataset.codexLocalBound==="1"){return;}form.dataset.codexLocalBound="1";const feedback=()=>{let node=form.querySelector("[data-codex-form-feedback]");if(node){return node;}node=document.createElement("div");node.className="codex-form-feedback";node.setAttribute("data-codex-form-feedback","true");node.setAttribute("aria-live","polite");form.appendChild(node);return node;};ensureHiddenInput(form,"__codex_page_path",window.location.pathname+window.location.search);ensureHiddenInput(form,"__codex_page_title",document.title||"");ensureHiddenInput(form,"__codex_site_key",inferSiteKey());ensureHiddenInput(form,"__codex_original_action",form.dataset.codexOriginalAction||"");ensureHiddenInput(form,"__codex_form_name",form.dataset.codexFormName||"Website Form");form.addEventListener("submit",async(event)=>{event.preventDefault();if(form.dataset.codexSubmitting==="1"){return;}form.dataset.codexSubmitting="1";const message=feedback();message.textContent="Submitting locally...";try{const response=await fetch(form.getAttribute("action")||"/api/form-submit",{method:"POST",body:new FormData(form),credentials:"same-origin"});const payload=await response.json().catch(()=>({ok:response.ok}));if(!response.ok||payload.ok===false){throw new Error("submit failed");}form.reset();ensureHiddenInput(form,"__codex_page_path",window.location.pathname+window.location.search);ensureHiddenInput(form,"__codex_page_title",document.title||"");ensureHiddenInput(form,"__codex_site_key",inferSiteKey());ensureHiddenInput(form,"__codex_original_action",form.dataset.codexOriginalAction||"");ensureHiddenInput(form,"__codex_form_name",form.dataset.codexFormName||"Website Form");message.textContent=payload.message||"Form submitted locally.";announce("Form submitted locally.");}catch{message.textContent="Could not submit the form locally. Try again.";}finally{delete form.dataset.codexSubmitting;}});}; const setExadModalVisibility=(modal,isOpen)=>{if(!(modal instanceof HTMLElement)){return;}modal.classList.toggle("active",isOpen);modal.style.display=isOpen?"block":"none";modal.style.visibility=isOpen?"visible":"hidden";modal.style.opacity=isOpen?"1":"0";modal.style.transform=isOpen?"none":"translate(-9999px,-9999px)";modal.querySelectorAll("*").forEach((node)=>{if(!(node instanceof HTMLElement)){return;}node.style.visibility=isOpen?"visible":"hidden";if(isOpen&&getComputedStyle(node).opacity==="0"){node.style.opacity="1";}});const root=modal.parentElement;if(root instanceof HTMLElement){const overlay=root.querySelector(".exad-modal-overlay");if(overlay instanceof HTMLElement){overlay.classList.toggle("active",isOpen);overlay.style.display=isOpen?"block":"none";overlay.style.visibility=isOpen?"visible":"hidden";overlay.style.opacity=isOpen?"1":"0";}}document.documentElement.classList.toggle("codex-exad-modal-open",isOpen);document.body.classList.toggle("codex-exad-modal-open",isOpen);}; const bindExadModalTrigger=(trigger)=>{if(trigger.dataset.codexModalBound==="1"){return;}trigger.dataset.codexModalBound="1";trigger.addEventListener("click",(event)=>{const selector=trigger.getAttribute("data-exad-modal");if(!selector){return;}const modal=document.querySelector(selector);if(!(modal instanceof HTMLElement)){return;}event.preventDefault();setExadModalVisibility(modal,true);});}; const bindExadModalClose=(button)=>{if(button.dataset.codexModalCloseBound==="1"){return;}button.dataset.codexModalCloseBound="1";button.addEventListener("click",(event)=>{const modal=button.closest('div[id^="exad-modal"]');if(!(modal instanceof HTMLElement)){return;}event.preventDefault();setExadModalVisibility(modal,false);});}; const installDisabledHandlers=()=>{ document.querySelectorAll("a[data-codex-disabled-external-link]").forEach((link)=>{if(link.dataset.codexBound==="1"){return;}link.dataset.codexBound="1";link.addEventListener("click",(event)=>{event.preventDefault();notify(link.getAttribute("data-codex-disabled-external-link")||"");});}); document.querySelectorAll('a[href=""],a[href="#"]').forEach((link)=>{if(link.dataset.codexNoHistory==="1"){return;}link.dataset.codexNoHistory="1";link.addEventListener("click",(event)=>{event.preventDefault();});}); document.querySelectorAll("[data-exad-modal]").forEach((trigger)=>{if(trigger instanceof HTMLElement){bindExadModalTrigger(trigger);}}); document.querySelectorAll(".exad-close-btn").forEach((button)=>{if(button instanceof HTMLElement){bindExadModalClose(button);}}); document.querySelectorAll("form[data-codex-local-form='true'],form[data-codex-disabled-external-form]").forEach((form)=>{bindLocalForm(form);}); document.querySelectorAll(".elementor-widget-hubspot-form,[data-widget_type='hubspot-form.default']").forEach((node)=>{if(node.querySelector("form, iframe")){return;}node.innerHTML=formPlaceholderHtml;}); document.querySelectorAll(".hbspt-form").forEach((node)=>{if(node.querySelector("form")||node.children.length>0){return;}node.innerHTML=formPlaceholderHtml;}); document.querySelectorAll("[data-widget_type='video.default'],[data-codex-disabled-video='true']").forEach((node)=>{node.setAttribute("data-codex-disabled-video","true");if(node.getAttribute("data-widget_type")==="video.default"){node.setAttribute("data-widget_type","codex-video-disabled.default");}const settings=node.getAttribute("data-settings")||"";if(/youtube_url|vimeo_url|video_type/i.test(settings)){node.setAttribute("data-settings","{}");}fillPlaceholder(node.querySelector(".elementor-widget-container"),mediaPlaceholderHtml);}); document.querySelectorAll(".elementor-video,.ose-wistia,.wistia_embed,[class*='ep-youtube'],[class*='ose-youtube']").forEach((node)=>{fillPlaceholder(node,mediaPlaceholderHtml);}); }; if(document.readyState==="loading"){document.addEventListener("DOMContentLoaded",installDisabledHandlers,{once:true});}else{installDisabledHandlers();} window.setTimeout(installDisabledHandlers,400); if(!installJetSticky()){let attempts=0;const timer=window.setInterval(()=>{attempts+=1;if(installJetSticky()||attempts>200){window.clearInterval(timer);}},25);} })();

INDIA

Request Call Back

compressed_newbackground

Where Curiosity Meets Curriculum

As a leading name among IB schools in Bangalore, India. OWIS nurtures academic brilliance and character growth through globally recognised learning experiences. Here, students don’t just study; they explore, innovate and lead with empathy.

IB Board Schools in Bangalore - Where Curiosity Meets Excellence

Our Illustrious Legacy

A K12 international school in Bangalore which nurtures both character and competence to make students lifelong learners and responsible global citizens.

Our Campuses

OWIS SARJAPUR

IB Continuum School

At OWIS Sarjapur, we are proud to be one of the top schools in Sarjapur, offering the globally renowned IB Curriculum. Our IB Syllabus is designed to inspire curiosity, creativity, and critical thinking, fostering well-rounded individuals. Join us to experience a nurturing environment where students thrive academically, socially, and emotionally. Excellence starts here!
LEARN MORE

OWIS WHITEFIELD

IB World School

At OWIS, we pride ourselves on offering the globally recognized IB Curriculum, designed to nurture inquisitive, compassionate, and confident learners. As one of the leading schools in Whitefield, Bangalore, we provide a dynamic IB Syllabus that fosters holistic development, preparing students to thrive in an ever-changing world. Join us to experience excellence in education!
LEARN MORE

Why Choose One World International School in India

We are the best IB School in Bangalore which values diversity, and cherishes and nurtures the unique potential of each learner. Through a globally recognised curriculum, we strive to develop a love for learning among students, as well as character development and imbibe in them respect for themselves, others and the wider world.

Specialised, experienced educators who are well-versed in their subjects and well-trained in modern teaching methodologies.

Best K12 IB Continuum education with a liberty for students to choose the curriculum of their choice

Learning spaces are designed to encourage collaboration, creativity, and critical thinking along with holistic growth of students.

Dedicated sessions that prepare students through services, resources and programs for prestigious university placements.

Facilities That Spark Curiosity

At OWIS (One World International School) Whitefield, we believe that learning is not just about academic excellence, but also creativity, physical fitness and social skills. Our facilities are designed to ignite and nourish young minds.

Our Academic Framework at OWIS

At One World International School (OWIS) India, education is more than just acquiring knowledge; it is about shaping curious minds into confident and capable individuals. Through globally recognised curricula such as the International Baccalaureate (IB); we provide a seamless journey of discovery and growth from the early years to pre-university. Our holistic framework balances academic excellence with personal development, preparing students to thrive as responsible global citizens in a rapidly evolving world.

Ages 3 to 6

Early Childhood
Early Childhood
Our Early Years Programme lays a strong foundation for lifelong learning by encouraging curiosity, creativity and social-emotional growth. Play-based and inquiry-driven activities encourage children to develop essential skills in language, numeracy, motor coordination and cultural awareness while cultivating a love for exploring more.

Grades 1 to 5

IB Primary Years Programme (PYP)
IB Primary Years Programme (PYP)
The PYP nurtures children’s natural curiosity by engaging them in meaningful, real-world explorations. With a focus on transdisciplinary learning, students develop strong communication, research and problem-solving abilities while building empathy and resilience along with an international mindset.

Grades 6 to 10

IB Middle Years Programme (MYP)
IB Middle Years Programme
Designed to bridge primary learning and advanced studies, the MYP empowers students to think critically and creatively. The curriculum combines academic rigour with experiential learning; helping learners connect classroom knowledge to real life challenges while cultivating independence and responsibility.

(IBDP) – Grades 11 & 12

IB Diploma Programme
IB Diploma Programme
Our IBDP offers a transformative learning experience that equips students for university and beyond. With its emphasis on encouraging global perspectives and leadership, the programme inspires students to become well-rounded and internationally minded leaders ready for a dynamic future.

We are a Proud Member of the Global Schools Group

The Most Awarded Educational Institution

65

Campuses

11

Countries

600+

Awards & Counting

5000+

Faculty

70

Nationalities

45000

Students

We are a proud member of the Global Schools Group (GSG), a global chain of K-12 schools, which is committed to ensuring the availability of world-class education for every child. Headquartered in Singapore, GSG was created with the goal of providing affordable, high-quality education to international communities worldwide. The group’s schools have received more than 500 national and international awards for academic excellence.

Frequently Asked Questions

OWIS Whitefield follows the International Baccalaureate (IB) curriculum. This globally recognized program fosters critical thinking, intercultural understanding, and a holistic approach to education, preparing students for a successful future. 

At OWIS Whitefield, we offer a variety of extracurricular activities. Students can engage in sports like tennis, basketball, football, and more. They can also explore creativity through music, dance, and art. Discover your passion with us!

OWIS Whitefield caters to children aged 3 to 18 years. We offer Early Years, Primary, and Secondary education, ensuring a strong foundation and holistic development at every stage of their learning journey.

OWIS Sarjapur offers the Early Years, IB Primary Years Programme (PYP), Middle Years Programme (MYP), and Diploma Programme (DP). These programs nurture curiosity and creativity, preparing students to be global citizens.

OWIS Sarjapur offers excellent facilities like smart classrooms, science labs, art studios, music rooms, sports arenas, a cozy library, and beautiful outdoor spaces. These support fun and creative learning experiences for all students. 

The admissions process at OWIS Sarjapur begins with scheduling a campus tour. During the visit, you’ll meet our dedicated faculty and explore our facilities. After the tour, you can complete the application form to secure your child’s place.

OWIS is one among the international schools in Sarjapur Bangalore offering secure and reliable transportation services. Its convenient facility makes it to the top schools in Sarjapur.

Visit our school and see how we can support your child’s all-round development.

downbrack

Visit our school and see how we can support your child’s all-round development.

Get a virtual feel of our friendly and warm school environment. Learn more about our teachers and our child-centred teaching methodology. Discover why our rigorous and holistic curriculum successfully prepares your child for secondary school and see how we raise internationally minded and confident lifelong learners.
×