Index: src/wp-admin/includes/ajax-actions.php
===================================================================
--- src/wp-admin/includes/ajax-actions.php	(revision 39351)
+++ src/wp-admin/includes/ajax-actions.php	(working copy)
@@ -99,62 +99,6 @@
 }
 
 /**
- * Ajax handler for tag search.
- *
- * @since 3.1.0
- */
-function wp_ajax_ajax_tag_search() {
-	if ( ! isset( $_GET['tax'] ) ) {
-		wp_die( 0 );
-	}
-
-	$taxonomy = sanitize_key( $_GET['tax'] );
-	$tax = get_taxonomy( $taxonomy );
-	if ( ! $tax ) {
-		wp_die( 0 );
-	}
-
-	if ( ! current_user_can( $tax->cap->assign_terms ) ) {
-		wp_die( -1 );
-	}
-
-	$s = wp_unslash( $_GET['q'] );
-
-	$comma = _x( ',', 'tag delimiter' );
-	if ( ',' !== $comma )
-		$s = str_replace( $comma, ',', $s );
-	if ( false !== strpos( $s, ',' ) ) {
-		$s = explode( ',', $s );
-		$s = $s[count( $s ) - 1];
-	}
-	$s = trim( $s );
-
-	/**
-	 * Filters the minimum number of characters required to fire a tag search via Ajax.
-	 *
-	 * @since 4.0.0
-	 *
-	 * @param int         $characters The minimum number of characters required. Default 2.
-	 * @param WP_Taxonomy $tax        The taxonomy object.
-	 * @param string      $s          The search term.
-	 */
-	$term_search_min_chars = (int) apply_filters( 'term_search_min_chars', 2, $tax, $s );
-
-	/*
-	 * Require $term_search_min_chars chars for matching (default: 2)
-	 * ensure it's a non-negative, non-zero integer.
-	 */
-	if ( ( $term_search_min_chars == 0 ) || ( strlen( $s ) < $term_search_min_chars ) ){
-		wp_die();
-	}
-
-	$results = get_terms( $taxonomy, array( 'name__like' => $s, 'fields' => 'names', 'hide_empty' => false ) );
-
-	echo join( $results, "\n" );
-	wp_die();
-}
-
-/**
  * Ajax handler for compression testing.
  *
  * @since 3.1.0
Index: src/wp-admin/js/tags-suggest.js
===================================================================
--- src/wp-admin/js/tags-suggest.js	(revision 39351)
+++ src/wp-admin/js/tags-suggest.js	(working copy)
@@ -1,7 +1,7 @@
 /**
  * Default settings for jQuery UI Autocomplete for use with non-hierarchical taxonomies.
  */
-( function( $ ) {
+( function( $, window ) {
 	if ( typeof window.tagsSuggestL10n === 'undefined' || typeof window.uiAutocompleteL10n === 'undefined' ) {
 		return;
 	}
@@ -53,33 +53,13 @@
 
 				term = getLast( request.term );
 
-				$.get( window.ajaxurl, {
-					action: 'ajax-tag-search',
-					tax: taxonomy,
-					q: term
+				$.get( window.tagsSuggestL10n.rest_url, {
+					taxonomy: taxonomy,
+					search: term
 				} ).always( function() {
 					$element.removeClass( 'ui-autocomplete-loading' ); // UI fails to remove this sometimes?
 				} ).done( function( data ) {
-					var tagName;
-					var tags = [];
-
-					if ( data ) {
-						data = data.split( '\n' );
-
-						for ( tagName in data ) {
-							var id = ++tempID;
-
-							tags.push({
-								id: id,
-								name: data[tagName]
-							});
-						}
-
-						cache = tags;
-						response( tags );
-					} else {
-						response( tags );
-					}
+					response( data );
 				} );
 
 				last = request.term;
@@ -118,7 +98,7 @@
 			close: function() {
 				$element.attr( 'aria-expanded', 'false' );
 			},
-			minLength: 2,
+			minLength: window.tags.minChars,
 			position: {
 				my: 'left top+2'
 			},
@@ -180,4 +160,4 @@
 		return this;
 	};
 
-}( jQuery ) );
+}( jQuery, window ) );
Index: src/wp-includes/script-loader.php
===================================================================
--- src/wp-includes/script-loader.php	(revision 39351)
+++ src/wp-includes/script-loader.php	(working copy)
@@ -547,6 +547,15 @@
 			'termSelected' => __( 'Term selected.' ),
 			'termAdded'    => __( 'Term added.' ),
 			'termRemoved'  => __( 'Term removed.' ),
+			'rest_url'     => rest_url( '/wp/v2/tags' ),
+			/**
+			 * Filters the minimum number of characters required to fire a tag search via Ajax.
+			 *
+			 * @since 4.0.0
+			 *
+			 * @param int         $characters The minimum number of characters required. Default 2.
+			 */
+			'minChars'     => = (int) apply_filters( 'term_search_min_chars', 2 );
 		) );
 
 		$scripts->add( 'post', "/wp-admin/js/post$suffix.js", array( 'suggest', 'wp-lists', 'postbox', 'tags-box', 'underscore', 'word-count', 'wp-a11y' ), false, 1 );
