elasticsearch/docs/reference/indices/get-index.asciidoc

53 lines
1.4 KiB
Text

[[indices-get-index]]
=== Get index API
++++
<titleabbrev>Get index</titleabbrev>
++++
Returns information about one or more indices. For data streams, the API
returns information about the stream's backing indices.
[source,console]
--------------------------------------------------
GET /my-index-000001
--------------------------------------------------
// TEST[setup:my_index]
[[get-index-api-request]]
==== {api-request-title}
`GET /<target>`
[[get-index-api-path-params]]
==== {api-path-parms-title}
`<target>`::
(Required, string)
Comma-separated list of data streams, indices, and index aliases used to limit
the request. Wildcard expressions (`*`) are supported.
+
To target all data streams and indices in a cluster, omit this parameter or use
`_all` or `*`.
[[get-index-api-query-params]]
==== {api-query-parms-title}
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=allow-no-indices]
+
Defaults to `true`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=expand-wildcards]
+
Defaults to `open`.
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=flat-settings]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=include-defaults]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=index-ignore-unavailable]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=local]
include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=master-timeout]