# Get task information **GET /_cat/tasks** Get information about tasks currently running in the cluster. IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the task management API. ## Required authorization * Cluster privileges: `monitor` ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Api key auth - Basic auth - Bearer auth ## Parameters ### Query parameters - **actions** (array[string]) The task action names, which are used to limit the response. - **detailed** (boolean) If `true`, the response includes detailed information about shard recoveries. - **nodes** (array[string]) Unique node identifiers, which are used to limit the response. - **parent_task_id** (string) The parent task identifier, which is used to limit the response. - **h** (string | array[string]) A comma-separated list of columns names to display. It supports simple wildcards. Supported values include: - `id`: The ID of the task with the node. - `action` (or `ac`): The task action. - `task_id` (or `ti`): The unique task ID. - `parent_task_id` (or `pti`): The parent task ID. - `type` (or `ty`): The task type. - `start_time` (or `start`): The start time in milliseconds. - `timestamp` (or `ts`, `hms`, `hhmmss`): The start time in HH:MM:SS. - `running_time_ns` (or `time`): The running time in nanoseconds. - `running_time` (or `time`): The running time. - `node_id` (or `ni`): The unique node ID. - `ip` (or `i`): The IP address. - `port` (or `po`): The bound transport port. - `node` (or `n`): The node name. - `version` (or `v`): The Elasticsearch version. - `x_opaque_id` (or `x`): The X-Opaque-ID header. - **s** (string | array[string]) List of columns that determine how the table should be sorted. Sorting defaults to ascending and can be changed by setting `:asc` or `:desc` as a suffix to the column name. - **timeout** (string) Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. - **wait_for_completion** (boolean) If `true`, the request blocks until the task has completed. ## Responses ### 200 #### Body: application/json (array[object]) - **id** (string) The identifier of the task with the node. - **action** (string) The task action. - **task_id** (string) The unique task identifier. - **parent_task_id** (string) The parent task identifier. - **type** (string) The task type. - **start_time** (string) The start time in milliseconds. - **timestamp** (string) The start time in `HH:MM:SS` format. - **running_time_ns** (string) The running time in nanoseconds. - **running_time** (string) The running time. - **node_id** (string) The unique node identifier. - **ip** (string) The IP address for the node. - **port** (string) The bound transport port for the node. - **node** (string) The node name. - **version** (string) The Elasticsearch version. - **x_opaque_id** (string) The X-Opaque-ID header. - **description** (string) The task action description. [Powered by Bump.sh](https://bump.sh)