diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
index 2c9bf40..19c29bc 100644
--- a/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
+++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
@@ -251,6 +251,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
 			'search'         => 's',
 			'slug'           => 'post_name__in',
 			'status'         => 'post_status',
+			'exact_search'   => 'exact',
 		);
 
 		/*
@@ -2833,6 +2834,11 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
 				'type'        => 'integer',
 			);
 		}
+		
+		$query_params['exact_search'] = array(
+			'description' => __( 'Use exact search instead of full search.' ),
+			'type'        => 'boolean',
+		);
 
 		$query_params['offset'] = array(
 			'description' => __( 'Offset the result set by a specific number of items.' ),
