--- layout: default title: Nodes APIs has_children: true nav_order: 50 --- # Nodes API The nodes API makes it possible to retrieve information about individual nodes within your cluster. ## Node filters Use the `` parameter to filter the target set of nodes in the API response. Parameter | Type | Description :--- |:-------| :--- `` | String | A comma-separated list of resolution mechanisms that OpenSearch uses to identify cluster nodes. Node filters support several node resolution mechanisms: - Predefined constants: `_local`, `_cluster_manager`, or `_all`. - An exact match for `nodeID` - A simple case-sensitive wildcard pattern matching for `node-name`, `host-name`, or `host-IP-address`. - Node roles where the `` value is set either to `true` or `false`: - `cluster_manager:` refers to all cluster manager-eligible nodes. - `data:` refers to all data nodes. - `ingest:` refers to all ingest nodes. - `voting_only:` refers to all voting-only nodes. - `ml:` refers to all machine learning (ML) nodes. - `coordinating_only:` refers to all coordinating-only nodes. - A simple case-sensitive wildcard pattern matching for node attributes: `:`. The wildcard matching pattern can be used in both the key and value at the same time. Resolution mechanisms are applied sequentially in the order specified by the client. Each mechanism specification can either add or remove nodes. To get statistics from the elected cluster manager node only, use the following query : ```json GET /_nodes/_cluster_manager/stats ``` {% include copy-curl.html %} To get statistics from nodes that are data-only nodes, use the following query: ```json GET /_nodes/data:true/stats ``` {% include copy-curl.html %} ### Order of resolution mechanisms The order of resolution mechanisms is applied sequentially, and each can add or remove nodes. The following examples yield different results. To get statistics from all the nodes except the cluster manager node, use the following query: ```json GET /_nodes/_all,cluster_manager:false/stats ``` {% include copy-curl.html %} However, if you switch the resolution mechanisms, the result will include all the cluster nodes, including the cluster manager node: ```json GET /_nodes/cluster_manager:false,_all/stats ``` {% include copy-curl.html %}