European Breakdown Cover | Single-trip and annual (2024)

x

European Breakdown Cover | Single-trip and annual (1)

The AA theaa.com FREE - In Google Play!

View

');$businessLinkMobileCount = $('.business-customer-mobile').length;if ($areYouBusinessCustomer.length && $businessLinkMobileCount == 0) {$mobileBusinessCustomerLink.html($areYouBusinessCustomer.html());$('.mobile-grey').append($mobileBusinessCustomerLink);}if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {// console.log("smaller than breakpoint");$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");$('#mainNavigation').addClass('mobile-main-nav').removeClass('desktop-main-nav');$('.mobile-grey').appendTo('.desktop-white');$('nav.aa-mega-menu').addClass('mobile-nav');if (!$('.scroller').length) {$('#site-header-yellow >.wrapper').wrap("

");}$('.mobile-tablet-menu').animate({ width: 'show' }, 30);$primaryHeadingCount = 0;$("#mainNavigation > ul > li.primary").each(function () {$primaryHeadingForMobile = $('

  • ');$firstColumnOfMegaMenu = $(this).find("nav > div > ul:nth-child(1)");$anchor = $($(this).children()[0]);anchorHtmlText = $anchor.html();$primaryHeadingForMobile.html(anchorHtmlText);var primaryNavCount = $(".primary.childrens").length;$primaryHeadingCount = $('.primary-heading').length;if ($primaryHeadingCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend($primaryHeadingForMobile);}$backLinkMobileCount = $('.backLink').length;if ($backLinkMobileCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend('

  • ');}});$('.main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {mobileCloseClick(e);$(".left.logo").focus();}});}else if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$('.left.logo').animate({ width: 'show' }, 30);$('.mobile-grey').appendTo('.top-header-links');$('nav.aa-mega-menu').removeClass('mobile-nav');$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('#mainNavigation').addClass('desktop-main-nav').removeClass('mobile-main-nav');$(".campaign-hero ").parents(':eq(2)').css('padding', '0')if ($('.scroller').length) {$('#site-header-yellow >.wrapper').unwrap("

    ");}$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);$('button > hr').css({"opacity": "0","visibility": "hidden"});$('.aa-mega-menu').css({"opacity": "0","visibility": "hidden"});$('.right.mobile-grey').show();$('#mainNavigation > ul.aa-main-nav > li.primary > button').keydown(function (e) {if (e.which === 13 || e.keyCode === 13) { /// for ENTER pressconst boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'true');});//remove active mega menu from HOVER if open if ($currentHoverMenuItem) {var $primaryNavigationListItem = $currentHoverMenuItem.parent();$currentHoverMenuItem.removeClass('menu-active').css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$currentHoverMenuItem = null;}applyMenuHoverInEffects($(this).parent());$('#mainContent').removeAttr("style");$('#mainContent').css({"opacity": "0.5","height": "calc(100% - 225px)","width": "100%","visibility": "visible","background-color": "#000","position": "absolute",// "top": "134px","left": "0px","z-index": "1"});$('#mainContent').addClass('menu-base-transition');$currentActiveMenuItem = $(this).parent().find('.aa-mega-menu');$currentActiveMenuItem.toggleClass("menu-active");// $('.column .sub-menu.col').animate({ width: 'show' }, 300);}else if (e.which === 9 || e.keyCode === 9) { // for TAB pressif ($currentActiveMenuItem) {e.preventDefault();var $firstAnchorOfMegaMenu = $($currentActiveMenuItem.find('div > ul:first-child > li:first-child > a')[0]);$firstAnchorOfMegaMenu.focus();}}});//get all last anchor items from all mega menus and attach key down event for Tab transer$("#mainNavigation > ul > li > nav > div > ul:last-child li:last-child a").keydown(function (e) {if (e.which === 9 || e.keyCode === 9) {console.log("tabbed...");$currentActiveMenuItem.removeClass('menu-active');var $nextPrimayNavItem = $currentActiveMenuItem.parent();if ($nextPrimayNavItem) {applyMenuHoverOutEffects($nextPrimayNavItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$nextPrimayNavItem.find('button')[0].focus();$currentActiveMenuItem = null;}else {//this will happen for very last anchor of last mega menu. there is no next menu item to focus to//so focus should be move to mainContent$('#mainContent').focus();}}});//for escape key- close the drop down menu if its open$('#mainNavigation > ul.aa-main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {if ($currentActiveMenuItem) {var $primaryNavListItem = $currentActiveMenuItem.parent()applyMenuHoverOutEffects($primaryNavListItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$primaryNavListItem.find('button')[0].focus();$currentActiveMenuItem = null;}const boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'false');});}});//when user mouse hovers from outside menu area then menu needs to animate with set transitions defined in css//but as sson as it enter menu are we need to remove animation transitions which are enabled. so differnt animation menu can be opened quickly$('#mainNavigation > ul.aa-main-nav').hover(function () {removeAnimation = true;}, function () {$('body').removeClass('notransition');removeAnimation = false;//this condition is added because after multiple ESC and TAB press somehow UL mouseout event was triggering and//it was causing background to set default yellow colorif ($currentActiveMenuItem == null) {$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');}});}if ($('#mainNavigation').hasClass('desktop-main-nav')) {$('.desktop-main-nav > ul.aa-main-nav > li.primary').hover(function () {// console.log("applying hover effects");$currentHoverMenuItem = $(this).find('.aa-mega-menu');//remove menu-active class from active mega menu from keyboard if open if ($currentActiveMenuItem) {var $primaryNavigationListItem = $currentActiveMenuItem.parent();$currentActiveMenuItem.removeClass('menu-active').removeAttr("style");var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});//If hover element and active keyboard element is not same then set active elment to null . giving preference to hoverif ($currentActiveMenuItem[0] != $currentHoverMenuItem[0])$currentActiveMenuItem = null;}applyMenuHoverInEffects(this);if (removeAnimation) {setTimeout(function () {$('body').addClass('notransition');}, 500);removeAnimation = false;}$('#mainContent').removeAttr("style");$('#mainContent').css({ "visibility": "visible" });$('#mainContent').addClass('menu-base-transition');}, function () {$currentHoverMenuItem = null;applyMenuHoverOutEffects(this);});}applyMenuHoverInEffects = function ($primaryNavElement) {// console.log("In applyMenuHoverInEffects");$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');$megaMenu.css({"opacity": "1","visibility": "visible"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "1","visibility": "visible"});//change header background with css transition class$('header#site-header-yellow').css('background', '#fff').addClass('bg-change');$('header#site-header-yellow').addClass('menu-base-transition');}applyMenuHoverOutEffects = function ($primaryNavElement) {$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$megaMenu.css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$('#mainContent').css({"visibility": "hidden",});}}$('header#site-header-yellow .main-nav ul.aa-main-nav > li').each(function () {if ($(this).find(".aa-mega-menu").length) {$(this).addClass('childrens')}});function mobileCloseClick(e) {// console.log("Mobille close called");e.preventDefault();$('body').removeClass("fixed-position");$('body').removeClass('mmenu-opened');$('header#site-header-yellow .main-nav').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active .scroller').animate({ right: '-100vw' }, 0);setTimeout(function () { $('#site-header-yellow').removeClass('mobilemenu-active') }, 0);$('.left.logo').animate({ width: 'show' }, 0);$('.mobile-tablet-menu').animate({ width: 'show' }, 0);$('.right.mobile-grey').show();$('#mainContent').removeAttr("style");const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'false');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'false');$('.main-nav').css('min-height', 'auto');if ($('.aa-mega-menu').hasClass('secondlevelOpen')) {$('.aa-mega-menu').stop().animate({ 'right': '-100vw' }, 0);primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');$('.aa-mega-menu').removeClass('secondlevelOpen');}$(".scroller").css("height", "100vh");$(".left.logo a").focus();$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 0);}$('.mobile-tablet-menu').click(function (e) {e.preventDefault();$('body').addClass("fixed-position");$(".mobile-grey a, .nav-logo a ").removeAttr("tabindex");$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('header#site-header-yellow .main-nav').animate({ right: '0' }, 300);$('.scroller').animate({ right: '0' }, 300);$('.left.logo').animate({ width: 'hide' }, 300);$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);if ($('.scroller').length) {$('#site-header-yellow').addClass('mobilemenu-active');}var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', 'auto');const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'true');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'true');$(".scroller").css("height", (Math.max(document.documentElement.clientHeight, window.innerHeight || 0) - $("#site-header-yellow").offset().top));$(".left.menu-logo a").focus();});$('.mobile-tablet-menu-open').click(function (e) {// changes for CD-50114 startmobileCloseClick(e);// changes for CD-50114 end});var primaryItem = $('li.primary.childrens > button');var backlink = $('li.backLink > button');if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {primaryItem.on('click', function (e) {console.log('primaryItem.on(click, function (e) ---');e.preventDefault();var megaHeight = $(this).next('.aa-mega-menu').height() + 120;$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '0' }, 300);$(this).parent('li').removeClass('hide-menu');$(this).addClass('hide-menu');$(this).parent('li').siblings('li').addClass('hide-menu').removeClass('activated');$(this).parent('li').addClass('activated');$(this).next('.aa-mega-menu').addClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', megaHeight);$('.main-nav').css('min-height', 'auto');$('.right.mobile-grey').hide();$('.column .sub-menu.col').animate({ width: 'show' }, 300);// $(".backLink button").focus();$(".left.menu-logo a").focus();});backlink.on('click', function (e) {e.stopPropagation();$(".secondlevelOpen").stop().animate({ width: 'hide' }, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').stop().animate({ right: '-100vw' }, 300);$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '-100vw' }, 300);setTimeout(function () {$('.right.mobile-grey').show();}, 300);$('.column .sub-menu.col').animate({ width: 'hide' }, 300);setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').removeClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', 'auto');var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', primaryHeight);});};window.aa.MenuSetupCompleted = true;}

    Skip to main content [Accesskey 'S'] Go to home page [Accesskey '1']Are you a business customer?

    • Broken down?
    • Route Planner
    • Help and support

    European breakdown cover from only £4.63 a day*

    Get peace of mind driving in Europe with our breakdown cover.

    Get a quote

    European Breakdown Cover | Single-trip and annual (2)

    24/7 English-speaking helpline

    European Breakdown Cover | Single-trip and annual (3)

    5-star rated by Defaqto

    European Breakdown Cover | Single-trip and annual (4)

    On average customers save around £650 in repair and recovery

    Where are you going?

    Whether you need breakdown cover for France, Spain, Germany or another European country, we’re never far away.

    Check your destination is one of the 44 countries we cover – and find the right level of cover for your trip.

    About our European Breakdown Cover

    Our cover ensures driving in Europe is never a worry – if your vehicle breaks down we'll help. We give you unique access to over 60,000 repairers and recovery operators in 44 countries across Europe.

    • We'll cover you from the moment you leave home, to the moment you get back – whether you're driving in France, Ireland or up to 44 countries across the continent.
    • We cover vehicles of any age including cars, vans, motorcycles, campervans and caravans. We even cover towing behind.
    • We offer alternative accommodation and travel arrangements, recovery of your vehicle back to the UK, and up to £50,000 in legal costs.
    • Don’t forget to purchase your cover before you travel abroad. Otherwise, it won’t be valid.
    • You’ll get a confirmation email with your policy number after you buy – so you can travel worry free. We’ll send your full policy details by post.

    What we offer

    We offer up to £50,000 in legal costs, £1,500 for alternative travel and £500 for emergency hotel costs. Optional Parts and Labour Cover for up to £500 helps with garage and repair bills.

    • AA members get 10% off
    • Recovery of your vehicle back to the UK
    • Single trip or annual multi-trip cover
    • Country zones to help you choose the right level of cover

    Build your cover

    We recently broke down in France and used our European breakdown cover with the AA.All the staff involved kept us up to date and dealt with everything in an impressively efficient manner.

    Caroline and Trevor, Cumbria

    August 2020

    Our European essentials

    European driving kits

    Everything you need for your European trip – from breakdown kits and headlight beam converters to high vis vests, emergency triangles and more.

    Travel insurance

    We’ll tailor your cover to suit your needs – so all you need to do is enjoy your trip.

    Get a quote

    Currency cards

    Get your money abroad the safe and easy way with a travel currency card.

    Find out more

    Related advice and links

    • Driving rules in France
    • How to find and use EV Charge points in Europe
    • What do I need when driving in Europe?
    • Driving offences abroad
    • Hiring a car abroad
    • Driving abroad advice
    • Country by country advice

    European Breakdown Cover | Single-trip and annual (6)

    European Breakdown Cover | Single-trip and annual (7) Broken down in Europe?

    If you already have European cover, call 24/7 on 0044 (0) 121 336 6289

    If you already have European cover, call 24/7 on 0044 (0) 121 336 6289

    Call now

    Which European countries do you cover?

    We cover 44 European countries and give you the option to choose from 3 geographical zones. So you only pay for the cover you need – whether you’re making a quick hop across the Channel or planning a pan-European adventure.

    Zone 1: Includes France and Germany
    Andorra, Belgium, France, Germany, Luxembourg, Monaco, Netherlands, Republic of Ireland.

    Zone 2: Includes Spain and Italy
    Andorra, Austria, Belgium, France, Germany, Gibraltar, Italy, Liechtenstein, Luxembourg, Monaco, Netherlands, Portugal, Republic of Ireland, San Marino, Spain (excluding Ceuta & Melilla), Switzerland, Vatican City.

    Zone 3: Includes Switzerland and Romania
    Albania, Andorra, Austria, Belarus, Belgium, Bosnia-Herzegovina, Bulgaria, Croatia, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Italy, Kosovo, Latvia, Liechtenstein, Lithuania, Luxembourg, Macedonia, Malta, Mediterranean islands (European. exc. Canary Islands), Monaco, Montenegro, Netherlands, Norway, Poland, Republic of Ireland, Romania, San Marino, Serbia, Slovakia, Slovenia, Sweden, Switzerland, Turkey in Europe (plus Üsküdar), Ukraine, Vatican City.

    All Zones
    If you purchase "All Zones" you'll be covered in all countries in Zones 1, 2 and 3.

    If you break down in Belarus, Ukraine or Bosnia-Herzegovina we won’t be able to help in the usual way.
    You’d still need to contact us to register your claim, but you’ll need to arrange for your vehicle to be repaired at your own cost. This includes having your vehicle transported back to the UK if it can’t be fixed. Keep a copy of your receipts and provide them to us when you return to the UK. We’ll then assess your claim and provide a refund where applicable.

    All other countries we cover remain unaffected.

    Are the Channel Islands and Isle of Man included with European Breakdown Cover?

    It depends on your final destination.

    If you’re visiting the Channel Islands or Isle of Man, they are not included with our European Breakdown Cover. You’ll need our UK breakdown cover instead.

    If you’re leaving from or passing through the Channel Islands or Isle of Man on your way to Europe, they are included with our European Breakdown Cover – but only when you're travelling between your home and the seaport you're departing from/returning to.

    What's included?
    • Defaqto 5-star rated cover
    • Unlimited overall claim limit (per trip with annual cover)
    • Full roadside assistance
    • Up to £1,500 for alternative travel and up to £500 for emergency hotel costs
    • We’ll help you reach your destination or get you and your car back home
    • Hire car before, during and after your trip to keep you on the move
    • Option to add Parts and Labour to your policy – get help with garage and repair bills, up to £500 (you can claim up to 3 times in your policy year with annual cover)
    • European Breakdown Cover is available for Annual, Single Trip and Single Trip Group policies.
    What should I do if I've changed my vehicle?

    Before you travel, make sure to call0800 107 6220 and tell us the new number plate.

    What vehicles do you cover?

    We cover cars, light vans, campervans, motor caravans, minibuses, caravans, trailers and motorcycles (over 200cc) provided they meet the following restrictions:

    • Maximum vehicle weight: 3.5 tonnes (3500 kgs) gross vehicle laden weight
    • Maximum vehicle length: 7m (23 ft)
    • Maximum vehicle width: 2.3m (7ft 6in)
    • Maximum vehicle height: 3m (9ft 10in)

    Vehicles must:

    • Have a current MOT certificate (if required)
    • Be taxed (not SORNed)
    • Have valid insurance for driving overseas
    • Be used for private purposes only
    What if I can’t see the cover I need online?

    Only our Single Trip (without towing) and Annual policies are sold on our website right now.

    Call us on 0800 072 3279 to purchase Single Trip cover with towing, a Group policy or if you want to discuss a one way trip.

    Can I get help if I've broken down abroad without cover?

    If you're broken down now but don't have cover with us, we may be able to help.

    Call us on 0044 (0)121 336 6289 – we'll provide a quote for one-off breakdown assistance. It'll likely cost more than our regular cover.

    Just so you know, this is for 1 single call-out only and you won't be covered afterwards.

    How do I use my Silver or Gold AA membership to get a discount on European Breakdown Cover?

    If you’re a Silver or Gold UK AA member, you can benefit from either 1 or 2 free days of European Breakdown Cover or up to 10% off our Annual European Breakdown Cover. If you wish to use this benefit, you must call us on 0800 072 3279 before you travel.

    Please note that free days can only be used a maximum of 3 times within the UK membership policy year and the annual discount can only be used once within the UK membership policy year.

    Will it be more expensive to buy new vehicle parts in Europe?

    Car parts purchased abroad may be more expensive and repairs may take longer if a new part is required.

    Will staff in garages in Europe speak English?

    Our 24/7 English-speaking helpline can be reached on 0044 (0)121 336 6289. However, we cannot guarantee that our repair and recovery operators in Europe will have English-speaking staff available. Opening hours may also differ to UK garages.

    I need to make 2 or more trips a year – what kind of cover can I get?

    Planning on making at least 2 trips to Europe within a 12-month period? If so, you'll probably be interested in our annual policy.This provides cover for unlimited trips abroad (up to 364 days in length) and up to 3 claims a year.

    How can I make a claim?

    Need to make a claim after your trip?

    If you already hold European Breakdown Cover with us and needed to pay and claim during your trip, we're here to help. Just download and fill out the form below.

    This can be emailed to: [emailprotected] along with copies of the relevant receipts etc.

    Or, you can post it to: Overseas Claims, Fanum House, Basingstoke, Hampshire, RG21 4EA

    European Breakdown Cover claims form

    Policy documents

    Terms and conditions apply:

    European Breakdown Cover terms and conditions

    Good to know

    * Price is correct at June 2024 and is based on an AA member taking out AA European Breakdown Cover online for an 8-day trip within Zone 1, in a car less than a year old.

    ** Service provision in some parts of Ukraine is not possible. Where service is available, garages require cash payments to provide assistance. We can reimburse this on your return in line with the terms and conditions of the policy.

    About the price

    Prices shown include an introductory discount. Annual prices may be higher on renewal after the first year. Prices are for new customers only.

    How do you use my data?

    To find out how we use your data, please read our website privacy noticeand our specific roadside product privacy notice.

    For more information, there's also our cookie policy and website terms and conditions.

    AA European Breakdown Cover is arranged by Automobile Association Insurance Services Limited which is authorised and regulated by the Financial Conduct Authority (FCA). You can check their register online.

    Registered office: Fanum House, Basing View, Basingstoke, Hampshire RG21 4EA. Registered in England and Wales number 2414212.

    Buy European Breakdown Cover

    0330 053 1321

    We're open 9am to 6pm, Monday to Friday; 9am to 5pm, Saturday.

    0330 053 1321

    Broken down in Europe?

    0044 (0) 121 336 6289

    If you're having difficulty accessing this number on your network, please use the following alternatives:

    • French landlines – 0825 098 876 or 0472 171 200
    • UK mobiles or other EU countries–
      00 3382 509 8876 or 00 3347 217 1200

    Get help now

  • European Breakdown Cover | Single-trip and annual (2024)

    References

    Top Articles
    Latest Posts
    Article information

    Author: Amb. Frankie Simonis

    Last Updated:

    Views: 5904

    Rating: 4.6 / 5 (76 voted)

    Reviews: 91% of readers found this page helpful

    Author information

    Name: Amb. Frankie Simonis

    Birthday: 1998-02-19

    Address: 64841 Delmar Isle, North Wiley, OR 74073

    Phone: +17844167847676

    Job: Forward IT Agent

    Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

    Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.