# Get async search results **GET /_async_search/{id}** Retrieve the results of a previously submitted asynchronous search request. If the Elasticsearch security features are enabled, access to the results of a specific async search is restricted to the user or API key that submitted it. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Api key auth - Basic auth - Bearer auth ## Parameters ### Path parameters - **id** (string) A unique identifier for the async search. ### Query parameters - **keep_alive** (string) The length of time that the async search should be available in the cluster. When not specified, the `keep_alive` set with the corresponding submit async request will be used. Otherwise, it is possible to override the value and extend the validity of the request. When this period expires, the search, if still running, is cancelled. If the search is completed, its saved results are deleted. - **typed_keys** (boolean) Specify whether aggregation and suggester names should be prefixed by their respective types in the response - **wait_for_completion_timeout** (string) Specifies to wait for the search to be completed up until the provided timeout. Final results will be returned if available before the timeout expires, otherwise the currently available results will be returned once the timeout expires. By default no timeout is set meaning that the currently available results will be returned without any additional wait. ## Responses ### 200 #### Body: application/json (object) - **id** (string) - **is_partial** (boolean) When the query is no longer running, this property indicates whether the search failed or was successfully completed on all shards. While the query is running, `is_partial` is always set to `true`. - **is_running** (boolean) Indicates whether the search is still running or has completed. > info > If the search failed after some shards returned their results or the node that is coordinating the async search dies, results may be partial even though `is_running` is `false`. - **expiration_time** (string | number) Indicates when the async search will expire. - **expiration_time_in_millis** (number) Time unit for milliseconds - **start_time** (string | number) - **start_time_in_millis** (number) Time unit for milliseconds - **completion_time** (string | number) Indicates when the async search completed. It is present only when the search has completed. - **completion_time_in_millis** (number) Time unit for milliseconds - **response** (object) [Powered by Bump.sh](https://bump.sh)