// GNews API key and keywords const apiKey = 'ba80327ee808107950ed733e783b2c3a'; const keywords = 'ESKD,ESRD,Kidney Disease,Renal Disease,Kidney Transplant,Dialysis'; const apiUrl = `https://gnews.io/api/v4/search?q=${encodeURIComponent(keywords)}&lang=en&from=${getPastDate()}&token=${apiKey}&max=10`; // Helper function to get the date 7 days ago in yyyy-mm-dd format function getPastDate() { const date = new Date(); date.setDate(date.getDate() - 7); return date.toISOString().split('T')[0]; } // Fetch data from GNews API fetch(apiUrl) .then(response => { if (!response.ok) { throw new Error(`Network response was not ok: ${response.statusText}`); } return response.json(); }) .then(data => { if (data.articles && data.articles.length > 0) { displayNews(data.articles); } else { throw new Error("No articles found in response data"); } }) .catch(error => { console.error('Error fetching data:', error); document.getElementById('news-container').innerHTML = '

Unable to load news articles at this time.

'; }); // Display news articles function displayNews(articles) { const newsContainer = document.getElementById('news-container'); newsContainer.innerHTML = ''; // Clear any existing content articles.forEach(article => { const articleElement = document.createElement('div'); articleElement.style.marginBottom = '10px'; // Use innerText for plain text and anchor element for the link articleElement.innerHTML = `

${new Date(article.publishedAt).toLocaleDateString()} - ${article.title}

Read more

`; newsContainer.appendChild(articleElement); }); }
top of page

All about Us

Welcome to Renal Travel Today (RTT), a unique blend of wanderlust and wellness.

At RTT, we're more than just a travel platform; we're your trusted companion on a journey where kidney care knows no boundaries. Whether for business or pleasure, we take you on adventures that cater to your unique needs as a kidney disease warrior or caregiver.

 

We believe in the transformative power of travel. We channel your curiosity, your zest for life, and yourlove for authentic experiences into every aspect of RTT.  We believe that travel with us is a gateway to discovering the world, with kidney health in mind.

Our mission is clear: to empower you to explore, embrace, and experience the world without compromising your kidney health. We've scoured the globe to compile up-to-date, reliable information about dialysis facilities at or near your chosen destinations. We follow in the late traveller Anthony Bourdain's footsteps, not as food connoisseurs, but as kidney care enthusiasts.

Unleashing Your Inner Explorer:

 

RTT encourages you to break free from the constraints of kidney disease. We're not just here to provide information; we're here to inspire you.  The journey changes you; it should change you." RTT embraces this philosophy. Travel should be accessible to all, and it can be. Let us show you how.

Adventures Await:

 

Whether you dream of strolling through historic European streets, lounging on tropical beaches, or trekking in the wilderness, RTT has your back. We facilitate bookings for dialysis treatments, taking the hassle out of your travel planning. Your adventure begins the moment you choose RTT.

RTT invites you to embrace the world, connect with fellow travellers who share your journey, and make memories that will last a lifetime.  RTT is about connecting kidney disease warriors to the world's wonders.

. Let's move, let's explore, and let's do it together. Welcome to a world where adventure meets kidney care. Welcome to Renal Travel Today.

Boulders
Passport
Group Hike
Reading a Map
Happy Tourist
Couple on a Walk
Planning Travels
Open Road
Italian Streets
Travel Selfie
Travel Selfie
Railway
  • alt.text.label.Facebook

©2023 by Renal Travel Today. Proudly created with Wix.com

bottom of page