List Search Applicationsedit

This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.

Returns information about Search Applications.

Requestedit

GET _application/search_application/

Prerequisitesedit

Requires the manage_search_application cluster privilege.

Path parametersedit

q
(Optional, string) Query in the Lucene query string syntax, to return only search applications matching the query.
size
(Optional, integer) Maximum number of results to retrieve.
from
(Optional, integer) The offset from the first result to fetch.

Response codesedit

Examplesedit

The following example lists all configured search applications:

GET _application/search_application/

The following example lists the first three search applications whose names match the query string app:

GET _application/search_application/?from=0&size=3&q=app

A sample response:

{
  "count": 2,
  "results": [
    {
      "name": "app-1",
      "indices": [ "index1", "index2" ]
    },
    {
      "name": "app-2",
      "indices": [ "index3", "index4" ]
    }
  ],
  "updated_at_millis": 1682105622204
}