> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Host Groups

Search for Host Groups in your environment by providing an FQL filter and paging details. Returns a set of Host Groups which match the filter criteria.

<Note>
  External Documentation

  To learn more, visit the [CrowdStrike documentation](https://falcon.us-2.crowdstrike.com/documentation/page/c0b16f1b/host-and-host-group-management-apis#u2c87e31).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                     |
  | ---------------- | --------------------------------------------------------------- |
  | Filter           | The filter expression that should be used to limit the results. |
  | Return All Pages | Automatically fetch all resources, page by page.                |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                  |
  | --------- | -------------------------------------------- |
  | Limit     | The maximum records to return. \[1-5000].    |
  | Offset    | The offset to start retrieving records from. |
  | Sort      | The property to sort by.                     |
</div>

## Example Output

```json theme={"dark"}
{
	"meta": {
		"query_time": 2,
		"pagination": {
			"offset": 208,
			"limit": 53,
			"total": 164
		},
		"trace_id": "<string>"
	},
	"errors": null,
	"resources": [
		{
			"id": "<string>",
			"group_type": "<string>",
			"name": "<string>",
			"description": "<string>",
			"assignment_rule": "<string>",
			"created_by": "<string>",
			"created_timestamp": "<string>",
			"modified_by": "<string>",
			"modified_timestamp": "<string>"
		},
		{
			"id": "<string>",
			"group_type": "<string>",
			"name": "<string>",
			"description": "<string>",
			"assignment_rule": "<string>",
			"created_by": "<string>",
			"created_timestamp": "<string>",
			"modified_by": "<string>",
			"modified_timestamp": "<string>"
		}
	]
}
```

## Workflow Library Example

[List Host Groups with Crowdstrike and Send Results Via Email](https://library.blinkops.com/workflows/list-host-groups-with-crowdstrike-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-host-groups-with-crowdstrike-and-send-results-via-email/canvas" />
</div>
