We use cookies to help improve your user experience. Continue browsing if you are OK with this. Cookie Policy
HOME >
Tenerife South airport (TFS) > Playa de las Americas
Book your transfer now!
Start your holidays smiling!
" + "Still can't find your destination?" + " " + "Get a quote!" + "
"); }, 100);}function appendResultsFixesOnTOP() { $(".BoxGetQuoteFixed").remove(); $($($("#ddlDestinos").data().select2.dropdown[0]).find(".select2-results")[0]).prepend("
" + "No match found" + "
" + "Please select the town or area of your destination. We'll ask you for the hotel or address later." + "
" + "Still can't find your destination?" + " " + "Get a quote!" + "
");}function CargarDatos() { $.ajax({ type: "POST", url: "/funciones.aspx/CargarDatosHome", contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { if (response.d != null) { CargarAeropuertos(response.d.ID_Aeropuerto, response.d.ID_Destino, false) $("#lblAdultsValue").val(response.d.Adultos); $("#lblChildrenValue").val(response.d.NiñosSeparados); $("#lblBabiesValue").val(response.d.Babies); $("#txtFechaInicio").val(response.d.FechaInicioFormat); $("#txtFechaInicio").attr("data-fecha", response.d.FechaInicioString); var from = $("#txtFechaInicio").attr("data-fecha").split("/"); var f = new Date("03/14/2023"); if (from != "") { f = new Date(from[2], from[1] - 1, from[0]); } if ($("#txtFechaFin").data().datepicker != null) { $("#txtFechaFin").data().datepicker.remove(); } $("#txtFechaFin").datepicker({ language: 'en' , todayHighlight: false , startDate: f , format: 'D, d M yyyy' , autoclose: true }).on('show', function () { }).attr('readonly', true); $("#txtFechaFin").val(response.d.FechaFinFormat); $("#txtFechaFin").attr("data-fecha", response.d.FechaFinString); $(".form-check-inline input[type='checkbox']").attr('checked', response.d.SoloIda).change(); if (response.d.Tipo) { $('#rdbFromAirport').prop('checked', true); $("#rdbFromAirport").trigger("change"); } else { $('#rdbToAirport').prop('checked', true); $("#rdbToAirport").trigger("change"); } CargarPassengers(); } else { CargarAeropuertos(); CargarPassengers(); } }, failure: function (response) { alert(response.d); } });}$('.form-check-inline').change(function () { var chk = $(".form-check-inline input[type='checkbox']:checked").val(); if (chk == "on") { $(".txtFechaFin").attr('disabled', 'disabled'); $(".txtFechaFin").parent().parent().addClass("disabled"); $(".txtFechaFin").val(""); } else { $(".txtFechaFin").removeAttr("disabled"); $(".txtFechaFin").parent().parent().removeClass("disabled"); }});function CargarTextos() { $.ajax({ type: "POST", url: "/funciones.aspx/CargarTextos", contentType: "application/json; charset=utf-8", dataType: "json", data: '{aeropuerto: "' + $("#ddlAeropuertos").val() + '"}', success: function (response) { if (response.d == "2") { if ($('#rdbFromAirport').is(':checked')) { $(".lblAeropuerto").html("Which airport or cruiseport are you arriving at?"); $(".lblFechaInicio").html("Ship arrival date"); $(".lblFechaFin").html("Ship departure date"); $(".lblDestino").html("Where do you want to go?"); $("#txtFechaInicio").attr("placeholder", "Arrival date"); $("#txtFechaFin").attr("placeholder", "Departure date"); } else { $(".lblAeropuerto").html("Which airport or cruiseport do you need to go to?"); $(".lblFechaInicio").html("Ship departure date"); $(".lblFechaFin").html("Ship arrival date"); $(".lblDestino").html("Where do we pick you up?"); $("#txtFechaFin").attr("placeholder", "Arrival date"); $("#txtFechaInicio").attr("placeholder", "Departure date"); } $(".lblFrom").html("From the cruiseport"); $(".lblTo").html("To the cruiseport"); } else { if ($('#rdbFromAirport').is(':checked')) { $(".lblAeropuerto").html("Which airport or cruiseport are you arriving at?"); $(".lblFechaInicio").html("Flight arrival date"); $(".lblFechaFin").html("Flight departure date"); $(".lblDestino").html("Where do you want to go?"); $("#txtFechaInicio").attr("placeholder", "Arrival date"); $("#txtFechaFin").attr("placeholder", "Departure date"); } else { $(".lblAeropuerto").html("Which airport or cruiseport do you need to go to?"); $(".lblFechaInicio").html("Flight departure date"); $(".lblFechaFin").html("Flight arrival date"); $(".lblDestino").html("Where do we pick you up?"); $("#txtFechaFin").attr("placeholder", "Arrival date"); $("#txtFechaInicio").attr("placeholder", "Departure date"); } $(".lblFrom").html("From the airport"); $(".lblTo").html("To the airport"); } }, failure: function (response) { alert(response.d); } });}$("#rdbFromAirport").change(function () { CargarTextos();});$("#rdbToAirport").change(function () { CargarTextos();});$(document).on('change', '#txtFechaInicio', function () { var from = $(this).attr("data-fecha").split("/"); var f = new Date("03/14/2023"); if (from != "") { f = new Date(from[2], from[1] - 1, from[0]); } if ($("#txtFechaFin").data().datepicker != null) { $("#txtFechaFin").data().datepicker.remove(); } $("#txtFechaFin").datepicker({ language: 'en' , todayHighlight: false , startDate: f , format: 'D, d M yyyy' , autoclose: true }).on('show', function () { }).attr('readonly', true); var fecha_fin = $("#txtFechaFin").attr("data-fecha").split("/"); var f_fin = new Date("03/14/2023"); if (fecha_fin != "") { f_fin = new Date(fecha_fin[2], fecha_fin[1] - 1, fecha_fin[0]); } if (f_fin < f) { $("#txtFechaFin").val(""); $("#txtFechaFin").attr("data-fecha", ""); } setTimeout(function () { $("#txtFechaFin").focus(); }, 100);});function CargarPassengers() { var text_adulto = "adult"; var text_adultos = "adults"; var text_niño = "child"; var text_niños = "children"; var texto1 = "", texto2 = ""; if (Number($("#lblAdultsValue").val()) > 1) { texto1 = text_adultos; } else { texto1 = text_adulto; } var children = Number($("#lblChildrenValue").val()) + Number($("#lblBabiesValue").val()); if (children > 1 || children == 0) { texto2 = text_niños; } else { texto2 = text_niño; } $("#txtPassengers").val($("#lblAdultsValue").val() + " " + texto1 + ", " + children + " " + texto2);}function MinusAdults() { var num = Number($("#lblAdultsValue").val()) - 1; if (num >= 1) { $("#lblAdultsValue").val(num); } CargarPassengers();}$("#lblAdultsValue").keyup(function (event) { CargarPassengers(); });$("#lblChildrenValue").keyup(function (event) { CargarPassengers(); });$("#lblBabiesValue").keyup(function (event) { CargarPassengers(); });$("#lblBabiesValue").keydown(function (e) { if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || (e.keyCode === 65 && (e.ctrlKey === true || e.metaKey === true)) || (e.keyCode >= 35 && e.keyCode <= 40)) { return; } if ((e.shiftKey | s | (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); }});$("#lblChildrenValue").keydown(function (e) { if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || (e.keyCodse === 65 && (e.ctrlKey === true || e.metaKey === true)) || (e.keyCode >= 35 && e.keyCode <= 40)) { return; } if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); }});$("#lblAdultsValue").keydown(function (e) { if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || (e.keyCode === 65 && (e.ctrlKey === true || e.metaKey === true)) || (e.keyCode >= 35 && e.keyCode <= 40)) { return; } if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); }});function PlusAdults() { $("#lblAdultsValue").val(Number($("#lblAdultsValue").val()) + 1); CargarPassengers();}function MinusChildren() { var num = Number($("#lblChildrenValue").val()) - 1; if (num >= 0) { $("#lblChildrenValue").val(num); } CargarPassengers();}function PlusChildren() { $("#lblChildrenValue").val(Number($("#lblChildrenValue").val()) + 1); CargarPassengers();}function MinusBabies() { var num = Number($("#lblBabiesValue").val()) - 1; if (num >= 0) { $("#lblBabiesValue").val(num); } CargarPassengers();}function PlusBabies() { $("#lblBabiesValue").val(Number($("#lblBabiesValue").val()) + 1); CargarPassengers();}function CloseModalPasajeros() { $(".modalPasjeros").css("display", "none");}$(document).click(function (e) { var $target = $(e.target); if (($target.hasClass("modalPasjeros") || $target.parent().hasClass("modalPasjeros") || $target.parent().parent().hasClass("modalPasjeros") || $target.parent().parent().parent().hasClass("modalPasjeros") || $target.parent().parent().parent().parent().hasClass("modalPasjeros") || $target.hasClass("txtPassengers")) && !$target.hasClass("btnOKPasajeros")) { $(".modalPasjeros").css("display", "block"); } else { $(".modalPasjeros").css("display", "none"); }});$("#ddlAeropuertos").on("shown", function (e) { $('html, body').animate({ scrollTop: $("#ddlAeropuertos").offset().top }, 300);});$(document).ready(function () { ResizeSlider(); var f = new Date("03/14/2023"); $("#txtFechaFin").datepicker({ language: 'en' , todayHighlight: false , startDate: f , format: 'D, d M yyyy' , autoclose: true , toggleActive: false }).attr('readonly', true);});
Playa de las Americas
from Tenerife South airport
Journey details
The route map could not be loaded
CLOSE
Playa de las Americas, located in Adeje, is just 25 minutes fromTenerife Sur airport (TFS)and is considered one of the most popular destinations for international tourists within the south of the island. Total piece of mind for your transfer from Tenerife South to Playa de las Americas Ziptransfers offers cheap airport transfers from Tenerife South airport to Playa de las Americas for all group sizes. We are one of the leading transfer companies in Europe, with over 10 years of experience and extremely competitive rates. You can check our current prices for or Playa de las Americas airport transfers by selecting your travel dates and passenger number in the form at the very top of this page. You will then see all our different transfer options for Playa de las Américas and their prices. Once you select a vehicle, you will be able to add extras such as child booster seats or extra stops to collect keys or drop passengers in different accommodations. If you want to go ahead with your booking, you will only need to fill in the lead passenger contact information and the destination address so we can schedule your collection right away. It takes about 2 minutes to go through the whole booking process and our customer service team will be able to assist you if you have any questions before or after booking. All our Playa de las Americas transfers are paid in advance via Mastercard or Visa on our secure payment platform, so you needn't worry about the final price or about having enough cash upon arrival or departure.
What if my plans change?
No worries! You can modify your transfer details at no charge whatsoever. Just get in touch and we will amend your pick up as needed. Should you need to cancel your service, please let us know 48 hours in advance in order to receive a full refund.
A fantastic basecamp to explore Tenerife
This area is known for its wide offer of activities available for everyone visiting Playa de las Americas. It is an ideal destination for all ages, there are shops and restaurants for all tastes and many water sports can be practiced as well in the area. Moreover, Playa de las Americas is also a place for relaxation and for spending an afternoon strolling along the promenade.
Teide National Park is a must-see place and can be easily accessible from Playa de las Americas, as there are many companies offering organised tours starting from many points on the island. This natural park owns the third biggest volcano in the world from its base and the most famous natural icon in the Canary Islands. Moreover, if you are a hiking lover, there are some routes you can do which are organized by active tourism companies.Also, a very interesting experience is to take a boat from the marina to watch whales and dolphins. If you prefer water sports, there are excursions to see the seabed of the area practicing snorkeling or diving.
To maximise your time in Playa de las Américas and minimise your stress, book your transfer now and let us take care of your transportation needs from and to Tenerife airport.
OTHER DESTINATIONS NEARBY
See all destinations fromTenerife South airport
HOW IT WORKS