| 1234567891011121314151617181920 | [[cluster-get-settings]]== Cluster Get SettingsThe cluster get settings API allows to retrieve the cluster wide settings.[source,js]--------------------------------------------------GET /_cluster/settings--------------------------------------------------// CONSOLEOr[source,js]--------------------------------------------------GET /_cluster/settings?include_defaults=true--------------------------------------------------// CONSOLEIn the second example above, the parameter `include_defaults` ensures that the settings which were not set explicitlyare also returned. By default `include_defaults` is set to false.
 |