VISA SERVICE – Embassy of Ethiopia “}; /* ]]]]> */ ]]> i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),”fullscreen”==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(“,”);if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split(“%”).length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f 0 && $(‘.responsive-menu-button-text’).length > 0) { $(‘.responsive-menu-button-text-open’).hide(); $(‘.responsive-menu-button-text’).show(); } }, setButtonTextOpen: function() { if($(‘.responsive-menu-button-text’).length > 0 && $(‘.responsive-menu-button-text-open’).length > 0) { $(‘.responsive-menu-button-text’).hide(); $(‘.responsive-menu-button-text-open’).show(); } }, triggerMenu: function() { this.isOpen ? this.closeMenu() : this.openMenu(); }, triggerSubArrow: function(subarrow) { var sub_menu = $(subarrow).parent().siblings(‘.responsive-menu-submenu’); var self = this; if(this.accordion == ‘on’) { /* Get Top Most Parent and the siblings */ var top_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).last().siblings(‘.responsive-menu-item-has-children’); var first_siblings = sub_menu.parents(‘.responsive-menu-item-has-children’).first().siblings(‘.responsive-menu-item-has-children’); /* Close up just the top level parents to key the rest as it was */ top_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); /* Set each parent arrow to inactive */ top_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); /* Now Repeat for the current item siblings */ first_siblings.children(‘.responsive-menu-submenu’).slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); first_siblings.each(function() { $(this).find(‘.responsive-menu-subarrow’).first().html(self.inactiveArrow); $(this).find(‘.responsive-menu-subarrow’).first().removeClass(‘responsive-menu-subarrow-active’); }); } if(sub_menu.hasClass(‘responsive-menu-submenu-open’)) { sub_menu.slideUp(self.subMenuTransitionTime, ‘linear’).removeClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.inactiveArrow); $(subarrow).removeClass(‘responsive-menu-subarrow-active’); } else { sub_menu.slideDown(self.subMenuTransitionTime, ‘linear’).addClass(‘responsive-menu-submenu-open’); $(subarrow).html(this.activeArrow); $(subarrow).addClass(‘responsive-menu-subarrow-active’); } }, menuHeight: function() { return $(this.container).height(); }, menuWidth: function() { return $(this.container).width(); }, wrapperHeight: function() { return $(this.wrapper).height(); }, setWrapperTranslate: function() { switch(this.animationSide) { case ‘left’: translate = ‘translateX(‘ + this.menuWidth() + ‘px)’; break; case ‘right’: translate = ‘translateX(-‘ + this.menuWidth() + ‘px)’; break; case ‘top’: translate = ‘translateY(‘ + this.wrapperHeight() + ‘px)’; break; case ‘bottom’: translate = ‘translateY(-‘ + this.menuHeight() + ‘px)’; break; } if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:translate}); $(‘html, body’).css(‘overflow-x’, ‘hidden’); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:translate}); } }, clearWrapperTranslate: function() { var self = this; if(this.animationType == ‘push’) { $(this.pageWrapper).css({‘transform’:”}); setTimeout(function() { $(‘html, body’).css(‘overflow-x’, ”); }, self.animationSpeed); } if(this.pushButton == ‘on’) { $(‘#responsive-menu-button’).css({‘transform’:”}); } }, init: function() { var self = this; $(this.trigger).on(this.triggerTypes, function(e){ e.stopPropagation(); self.triggerMenu(); }); $(this.trigger).mouseup(function(){ $(self.trigger).blur(); }); $(‘.responsive-menu-subarrow’).on(‘click’, function(e) { e.preventDefault(); e.stopPropagation(); self.triggerSubArrow(this); }); $(window).resize(function() { if($(window).width() > self.breakpoint) { if(self.isOpen){ self.closeMenu(); } } else { if($(‘.responsive-menu-open’).length>0){ self.setWrapperTranslate(); } } }); if(this.closeOnLinkClick == ‘on’) { $(this.linkElement).on(‘click’, function(e) { e.preventDefault(); /* Fix for when close menu on parent clicks is on */ if(self.itemTriggerSubMenu == ‘on’ && $(this).is(‘.responsive-menu-item-has-children > ‘ + self.linkElement)) { return; } old_href = $(this).attr(‘href’); old_target = typeof $(this).attr(‘target’) == ‘undefined’ ? ‘_self’ : $(this).attr(‘target’); if(self.isOpen) { if($(e.target).closest(‘.responsive-menu-subarrow’).length) { return; } self.closeMenu(); setTimeout(function() { window.open(old_href, old_target); }, self.animationSpeed); } }); } if(this.closeOnBodyClick == ‘on’) { $(document).on(‘click’, ‘body’, function(e) { if(self.isOpen) { if($(e.target).closest(‘#responsive-menu-container’).length || $(e.target).closest(‘#responsive-menu-button’).length) { return; } } self.closeMenu(); }); } if(this.itemTriggerSubMenu == ‘on’) { $(‘.responsive-menu-item-has-children > ‘ + this.linkElement).on(‘click’, function(e) { e.preventDefault(); self.triggerSubArrow($(this).children(‘.responsive-menu-subarrow’).first()); }); } if (jQuery(‘#responsive-menu-button’).css(‘display’) != ‘none’) { $(‘#responsive-menu-button,#responsive-menu a.responsive-menu-item-link, #responsive-menu-wrapper input’).focus( function() { $(this).addClass(‘is-active’); $(‘html’).addClass(‘responsive-menu-open’); $(‘#responsive-menu li’).css({“opacity”: “1”, “margin-left”: “0”}); }); $(‘#responsive-menu-button, a.responsive-menu-item-link,#responsive-menu-wrapper input’).focusout( function() { if ( $(this).last(‘#responsive-menu-button a.responsive-menu-item-link’) ) { $(this).removeClass(‘is-active’); $(‘html’).removeClass(‘responsive-menu-open’); } }); } $(‘#responsive-menu a.responsive-menu-item-link’).keydown(function(event) { console.log( event.keyCode ); if ( [13,27,32,35,36,37,38,39,40].indexOf( event.keyCode) == -1) { return; } var link = $(this); switch(event.keyCode) { case 13: link.click(); break; case 27: var dropdown = link.parent(‘li’).parents(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); dropdown.prev().focus(); } break; case 32: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.show(); dropdown.find(‘a, input, button, textarea’).first().focus(); } break; case 35: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if ( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).last().focus(); break; case 36: var dropdown = link.parent(‘li’).find(‘.responsive-menu-submenu’); if( dropdown.length > 0 ) { dropdown.hide(); } $(this).parents(‘#responsive-menu’).find(‘a.responsive-menu-item-link’).filter(‘:visible’).first().focus(); break; case 37: case 38: event.preventDefault(); event.stopPropagation(); if ( link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; case 39: case 40: event.preventDefault(); event.stopPropagation(); if( link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().length == 0) { link.parent(‘li’).prevAll(‘li’).filter(‘:visible’).last().find(‘a’).first().focus(); } else { link.parent(‘li’).nextAll(‘li’).filter(‘:visible’).first().find(‘a’).first().focus(); } break; } }); } }; ResponsiveMenu.init(); });]]> You are here: Home / VISA SERVICE
All foreign nationals who seek to enter Ethiopia are required to get visa. Travelers arriving at Addis Ababa Bole International Airport for connecting flight are not required to have visa provided that they do not leave the airport or pass the Immigration Desk.
The Ethiopian Immigration, Nationality and Vital Events Agency has temporarily suspended E-Visa and Visa-On-Arrival Visa services to all passengers travelling from the U.S. to Ethiopia with the exception of Ethiopian passport holders and Ethiopian Origin ID (Yellow Card) holders. Passengers can obtain visa from the Ethiopian Embassy in Washington D.C. either in person or by mail.
Travelers are advised to make sure that they meet all the following requirements to get the type of visa for which they are applying.
Visa Types
Tourist Visa
Tourist visa is issued for visitors desiring to enter Ethiopia temporarily for tourism or a visit.
The following options are available under tourist visas:
- Single entry visa valid for up to 30 days
- Single entry visa valid for 3 months
- Multiple entry visa valid for 3 months
- Multiple entry visa valid for 6 months
How to Apply for Tourist Visa
You can use the following options to apply for a tourist visa
Applying in Person
You can apply for a tourist visa at the Embassy in person at any time during working hours.
Required documents
Apply by Courier
The Embassy of Ethiopia accepts visa applications by post or courier service.
Required Documents
Business Visa
If you wish to travel to Ethiopia to undertake business or any work, including voluntary work, you will require a business visa approved by the office of Immigration, Nationality and Vital Event Agency. Business visa applications can be made in person at the Embassy or via post or courier service.
Except for holders of Diplomatic Passport, Official Passport, Service Passport, UN travel document, all other visa applicants should get Visa Approval from Ethiopian Immigration, Nationality and Vital Event Agency. The Host Company or sponsor in Ethiopia should request a visa approval from Ethiopian Immigration, Nationality and Vital Event Agency on behalf of the applicant Including US ordinary passport holders.
US Diplomats or Officials travelling with Diplomatic or Official Passport must bring an official letter from the US State Department.
Diplomats or Officials of other countries travelling with Diplomatic, official or service Passport or UN travel document must bring an official letter from Embassies or appropriate Authorities.
Required Documents
- Current Passport. The passport must be valid for at least six months.
- One recent passport-size photograph.
- Copy of Green Card or I-94 or Work Permit (for Non-US Nationals)
- VISA APPROVAL from Ethiopian Immigration, Nationality and Vital Event Agency
- A completed visa application form (Click here to download the application form)
- Service fees will be paid in money order payable to Embassy of Ethiopia; (Click here to view a chart of the visa types and associated fees)
- A self-addressed return envelope with a tracking number (UPS, or USPS EXPRESS MAIL)
Journalist Visa
If you are a journalist, filmmaker or professional photographer and wish to travel to Ethiopia to report on a given situation or story, you will require a journalist visa. If you are unsure if you need this kind of visa, please contact the Public Diplomacy Section.
Required Documents
- Application letter on headed paper and signed, detailing:
- The purpose of the trip, proposed dates of travel, locations and some background information about the report or program
- Details of the travelling journalist(s)/crew (full name, passport number, nationality and role)
- Copy of passport for each person travelling
- A kit list / carnet of all equipment being taken
- A list of all equipment being taken into Ethiopia, including serial numbers
- Relevant supporting documents
- Aerial photography / filming
- If you plan on taking films or photos from a plane or helicopter, permission must be sought in advance from the Civil Aviation Authority. You must state this in your application letter.
@2021 Ethiopian Embassy in Washington DC. Site Developed and Maintained by Walia Technologies | Privacy Policy
GIPHY App Key not set. Please check settings