Work with Austin

I'm always looking for new ways to grow the hobby and   collaborate with divers and brands.

Who I Work With

- Dive Resorts
- Dive Charters
- Liveaboards
- Scuba & Watersport Gear Brands
- Health & Wellness Brands

Request Media Kit

Connect Directly with Austin

Scuba Diving Community

Dive & Train With Austin

Join my private online community for divers who live and breath scuba diving. Members gain access to unique content, LIVE sessions with Austin and other experts among various topics, insider tips, and a community that shares their dives.
While I go by the name Divemaster Austin, I'm now a PADI instructor! If you'd like to advance your scuba diving certifications with me, contact me below and we can see if it's a fit!

Reach out to me if you have any questions

If you’d like to work with Austin or have questions for him,
fill out the contact form and he’ll follow up with you personally within 48 hours.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Work with Austin

I’m always looking to connect and collaborate with people and brands who share a passion for scuba diving, adventure, and health & wellness.

Below I'll list a few ways I work with partners in order to serve humans & the diving community.

View Media Kit

Connect with Austin

My Free Online Community:

Join a private community of divers and adventurers who take action and share with each other. I host in-person and online meetups for divers around the world.

Join the Dive Community

Recommended Dive Operators

As I dive around the world, I'm working on a list of professional dive operators (resorts, liveaboards, & charters) that I've personally hired myself or highly engaged members of my community.

Inquire to Get Listed

Group Diving Retreats

A couple times a year, I host in-person events at dive destinations around the world. If you're a dive resort, liveaboard, or charter company that would like to collaborate on opportunities please reach out.

Collaborate on In-Person Event

Product Testing

I'm always looking for new products to test and use on my adventures and include in my content. If you'd like me to test your product for the chance of me covering it in future content, you can pitch it to me.

Tell Me About Your Product

Divemaster Austin's Picks

My Scuba Gear, Supplements, & More

Below, I've curated different collections on Amazon where you can view the scuba diving gear I use, the supplements I take, and reviews of products I come across. If you make a purchase from any of my reccomendations I'll earn a commission at no extra cost to you.

Shop my Collections

Collaborate with Divemaster Austin

Sponsorships & Brand Partnerships:

I work with diving, fitness, and health and wellness brands that value safety, performance, and authenticity in organic ways throughout my content and resources.

If your product resonates with me after testing and is the right fit for my audience, I’d love to connect and explore how we can work together.

Content Creation Collaborations

If you're a content creator and want to collaborate in person or over the internet, be sure to contact me below for opportunities. You can view where I am in the world currently inside of my community.

Contact Me Below

If you’d like to work with me in any of the above mentioned ways, fill out the form below and I'll get back to you  within 48 hours.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
/* * Check whether the popup has already appeared * during the current browser session. */ function hasAlreadyShown() { try { return sessionStorage.getItem(STORAGE_KEY) === "1"; } catch (error) { return false; } } /* * Mark the popup as shown for the current session. */ function markAsShown() { try { sessionStorage.setItem(STORAGE_KEY, "1"); } catch (error) { /* * Continue normally if sessionStorage * is unavailable or blocked. */ } } /* * Clear the active delay timer. */ function clearPopupTimer() { if (timer !== null) { window.clearTimeout(timer); timer = null; } } /* * Open the popup smoothly. */ function showPopup() { clearPopupTimer(); if (popupVisible || hasAlreadyShown()) { return; } popupVisible = true; previousActiveElement = document.activeElement; markAsShown(); popup.setAttribute("aria-hidden", "false"); overlay.setAttribute("aria-hidden", "false"); /* * Wait for two animation frames so the browser * registers the hidden state before adding * the visible animation class. */ window.requestAnimationFrame(function () { window.requestAnimationFrame(function () { overlay.classList.add("ei-visible"); popup.classList.add("ei-visible"); }); }); /* * Focus the close button after the animation begins. */ window.setTimeout(function () { closeButton.focus(); }, 450); } /* * Close the popup smoothly. */ function hidePopup() { if (!popupVisible) { return; } popupVisible = false; overlay.classList.remove("ei-visible"); popup.classList.remove("ei-visible"); popup.setAttribute("aria-hidden", "true"); overlay.setAttribute("aria-hidden", "true"); /* * Return keyboard focus to the element * the visitor was using before the popup opened. */ window.setTimeout(function () { if ( previousActiveElement && typeof previousActiveElement.focus === "function" ) { previousActiveElement.focus(); } }, 450); } /* * Start or resume the 30-second timer. * * The timer only runs while the browser tab * is visible to the visitor. */ function startPopupTimer() { if ( popupVisible || hasAlreadyShown() || document.visibilityState === "hidden" || timer !== null ) { return; } timerStartedAt = Date.now(); timer = window.setTimeout(function () { timer = null; remainingTime = 0; showPopup(); }, remainingTime); } /* * Pause the timer when the visitor leaves * or switches away from the browser tab. */ function pausePopupTimer() { if (timer === null) { return; } var elapsedTime = Date.now() - timerStartedAt; remainingTime = Math.max( 0, remainingTime - elapsedTime ); clearPopupTimer(); } /* * Handle browser-tab visibility changes. */ function handleVisibilityChange() { if (hasAlreadyShown()) { clearPopupTimer(); return; } if (document.visibilityState === "hidden") { pausePopupTimer(); return; } if (remainingTime <= 0) { showPopup(); } else { startPopupTimer(); } } /* * Initialize the popup. */ function initializePopup() { overlay.classList.remove("ei-visible"); popup.classList.remove("ei-visible"); popup.setAttribute("aria-hidden", "true"); overlay.setAttribute("aria-hidden", "true"); if (hasAlreadyShown()) { return; } startPopupTimer(); } /* * Close interactions */ closeButton.addEventListener("click", hidePopup); overlay.addEventListener("click", hidePopup); dismissButton.addEventListener("click", hidePopup); /* * Allow the dismiss text to work with Enter or Space. */ dismissButton.addEventListener("keydown", function (event) { if ( event.key === "Enter" || event.key === " " ) { event.preventDefault(); hidePopup(); } }); /* * Close with the Escape key. */ document.addEventListener("keydown", function (event) { if (event.key === "Escape" && popupVisible) { hidePopup(); } }); /* * Pause and resume the timer based on * whether the visitor is actively viewing the page. */ document.addEventListener( "visibilitychange", handleVisibilityChange ); /* * Track CTA clicks. */ ctaButton.addEventListener("click", function () { hidePopup(); if (typeof window.gtag === "function") { window.gtag( "event", "exit_popup_cta_click", { event_category: "Exit Intent", event_label: "Skool Community" } ); } }); /* * Start the delay after the full page, * including images and fonts, has loaded. */ if (document.readyState === "complete") { initializePopup(); } else { window.addEventListener( "load", initializePopup, { once: true } ); } })();