Kayak & SUP

Sea kayaking in Oxelösund archipelago

Kayak & SUP

Explore Oxelösund’s archipelago from the water — rent a kayak, SUP or book a guided tour

Paddle through beautiful archipelago

Oxelösund Adventure Park now also offers kayak and SUP rental at Jogersö Beach. Perfect for combining climbing on the high ropes course with a day on the water. We have kayaks for all levels — from stable beginner kayaks to fast sea kayaks.

Kayak tour in Oxelösund archipelago

Rent a kayak or SUP

We offer a wide range of single and double kayaks, as well as Stand Up Paddleboards. All rentals include paddle, life jacket, spray skirt and local map. We provide a safety and technique briefing before you head out.

Prices 2026

DurationK1 / SUPK2 / K3
1 hour180 SEK280 SEK
2 hours280 SEK380 SEK
4 hours380 SEK520 SEK
Full day (8h)520 SEK700 SEK
24 hours650 SEK850 SEK
Weekend950 SEK1 250 SEK
Week2 450 SEK3 250 SEK

K1 = Single kayak · K2 = Double kayak · K3 = Double kayak with child seat · All prices incl. VAT

Guided tours & courses

Want the full experience? Book a guided kayak tour through Oxelösund’s stunning archipelago. Our certified guide takes you through beautiful passages and shares stories about nature and local history. No prior experience required.

Guided kayak tour

  • Price: 850 SEK/person
  • Duration: approx. 3 hours
  • Start and finish at Jogersö Beach
  • Optional fika add-on: 100 SEK/person

Kayak course

  • Price: 1 150 SEK/person
  • 2 sessions × 3 hours
  • Learn technique, launching and safety
  • Instructor and single kayak included
Guided kayak tour in Oxelösund
Mega SUP team event

Corporate & events

Planning a team building, hen party or corporate event? Combine the high ropes course with activities on the water for a full day of adventure. We tailor packages to your needs.

Mega SUP

  • 290 SEK/person (6–24 participants)
  • Giant SUP boards for teams of 4–8
  • Approx. 30–45 minutes

Good to know

Included in rental

  • Paddle
  • Life jacket
  • Spray skirt
  • Local area map
  • Bilge pump
  • Safety and technique briefing

Season & hours

  • Season: May 31 – September 15
  • Online booking: 09:00 – 19:00
  • Walk-in on sunny days: 11:00 – 19:00
  • Also open by appointment

Location

  • Jogersö Beach, Oxelösund
  • Same area as the high ropes course
  • 60 min south of Stockholm
  • Phone: 0155-308 08

Ready for adventure?

Book your spot now — climb the high ropes or paddle through the archipelago! Welcome to Oxelösund Adventure Park.

(function() { var header = document.querySelector(’.aventyr-header’); var logo = document.querySelector(’.aventyr-header-logo’); if (!header) return; // Move header and logo out of content flow into body directly document.body.appendChild(header); if (logo) document.body.appendChild(logo); var hasCover = document.querySelector(’.aventyr-hero’); var scrollThreshold = 100; var ticking = false; // Subpages without a hero/cover get green header immediately if (!hasCover) { header.classList.add(’aventyr-header-scrolled’); if (logo) logo.classList.add(’aventyr-logo-scrolled’); } function updateHeader() { var scrollY = window.scrollY || window.pageYOffset; if (!hasCover || scrollY > scrollThreshold) { header.classList.add(’aventyr-header-scrolled’); if (logo) logo.classList.add(’aventyr-logo-scrolled’); } else { header.classList.remove(’aventyr-header-scrolled’); if (logo) logo.classList.remove(’aventyr-logo-scrolled’); } ticking = false; } window.addEventListener(’scroll’, function() { if (!ticking) { window.requestAnimationFrame(updateHeader); ticking = true; } }); updateHeader(); // Mark active nav link based on current URL path var path = window.location.pathname.replace(/\/$/, ”); var navLinks = document.querySelectorAll(’.aventyr-header-nav a’); navLinks.forEach(function(link) { var href = link.getAttribute(’href’); if (href) { var linkPath = href.replace(/\/$/, ”); if (path === linkPath || path.endsWith(linkPath)) { link.classList.add(’aventyr-nav-active’); } } }); // Language switcher — inject between nav and CTA var cta = document.querySelector(’.aventyr-header-cta’); if (cta) { var langSwitcher = document.createElement(’div’); langSwitcher.className = ’aventyr-lang-switcher’; // Detect current language from URL var currentLang = ’sv’; if (path.indexOf(’/en’) === 0 || path.indexOf(’/en/’) >= 0) currentLang = ’en’; if (path.indexOf(’/de’) === 0 || path.indexOf(’/de/’) >= 0) currentLang = ’de’; var langs = [ {code: ’sv’, label: ’SV’, flag: ’🇸🇪’}, {code: ’en’, label: ’EN’, flag: ’🇬🇧’}, {code: ’de’, label: ’DE’, flag: ’🇩🇪’} ]; // Build the current language display + dropdown var currentDisplay = langs.find(function(l) { return l.code === currentLang; }); var html = ’’; html += ’
’; // Map page slugs for language switching var pageMap = { sv: {home: ’/’, banor: ’/banor/’, sakerhet: ’/sakerhet/’, ’infor-ditt-besok’: ’/infor-ditt-besok/’, ’vanliga-fragor’: ’/vanliga-fragor/’}, en: {home: ’/en/home/’, banor: ’/en/courses/’, sakerhet: ’/en/security-and-safety/’, ’infor-ditt-besok’: ’/en/before-your-visit/’, ’vanliga-fragor’: ’/en/frequently-asked-questions/’}, de: {home: ’/de/startseite/’, banor: ’/de/bahnen/’, sakerhet: ’/de/sicherheit-und-schutz/’, ’infor-ditt-besok’: ’/de/vor-ihrem-besuch/’, ’vanliga-fragor’: ’/de/haeufig-gestellte-fragen/’} }; // Detect current page var currentPage = ’home’; var cleanPath = path.replace(/^\/(en|de)\//, ’/’).replace(/^\//, ”); var slugMap = { ”: ’home’, ’banor’: ’banor’, ’courses’: ’banor’, ’bahnen’: ’banor’, ’sakerhet’: ’sakerhet’, ’security-and-safety’: ’sakerhet’, ’sicherheit-und-schutz’: ’sakerhet’, ’infor-ditt-besok’: ’infor-ditt-besok’, ’before-your-visit’: ’infor-ditt-besok’, ’vor-ihrem-besuch’: ’infor-ditt-besok’, ’vanliga-fragor’: ’vanliga-fragor’, ’frequently-asked-questions’: ’vanliga-fragor’, ’haeufig-gestellte-fragen’: ’vanliga-fragor’, ’home’: ’home’, ’startseite’: ’home’ }; currentPage = slugMap[cleanPath] || ’home’; langs.forEach(function(lang) { if (lang.code === currentLang) return; var targetUrl = pageMap[lang.code][currentPage] || (lang.code === ’sv’ ? ’/’ : ’/’ + lang.code + ’/’); html += ’’ + ’’ + lang.flag + ’’ + ’’ + lang.label + ’’; }); html += ’
’; langSwitcher.innerHTML = html; cta.parentNode.insertBefore(langSwitcher, cta.nextSibling); // Toggle dropdown var btn = langSwitcher.querySelector(’.aventyr-lang-current’); var dropdown = langSwitcher.querySelector(’.aventyr-lang-dropdown’); btn.addEventListener(’click’, function(e) { e.stopPropagation(); dropdown.classList.toggle(’aventyr-lang-open’); }); document.addEventListener(’click’, function() { dropdown.classList.remove(’aventyr-lang-open’); }); } })();