> ## 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 Indicators

Retrieve a list of indicators with optional filtering.

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Filters          | A filter parameter that accepts a subset of MongoDB-style queries to filter by. Supported operators may differ based on the field's data type.<br /><br />**Available attributes:** `value`, `type`, `test`, `active`, `internalHits`, `externalHits`, `expiresAt`, `source`, `sharedWith`, `firstSeen`, `lastSeen`, `reputation`, `comments`<br /><br />**For Example:**<br /><br />\* Find all indicators with reputation greater than 5 and externalHits more than 10.<br />  <pre><code>\{<br />    "\$and": \[<br />      \{<br />        "reputation": \{<br />          "\$gt": 5<br />        }<br />      },<br />      \{<br />        "externalHits": \{<br />          "\$gt": 10<br />        }<br />      }<br />    ]<br />  }<br /></code></pre>\* Find all indicators that have been shared with "Netskope Partners" configuration.<br />  <pre><code>\{<br />    "sharedWith": \{<br />      "\$in": \["Netskope Partners"]<br />    }<br />  }<br /></code></pre>\* Not operator is only supported for regex matches.<br />  <pre><code>\{<br />    "value": \{<br />      "\$not": "^(db.tt)"<br />    }<br />  }<br /></code></pre>To learn more about building MongoDB queries, please visit [MongoDB documentation](https://docs.mongodb.com/manual/tutorial/query-documents/). |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                          |
  | --------------- | ---------------------------------------------------- |
  | Aggregate       | Select to retrieve indicators in an aggregated form. |
  | Ascending Order | Select to retrieve indicators in an ascending order. |
  | Limit           | The number of results to return per page.            |
  | Skip            | The number of results to initially skip.             |
  | Sort Field      | A field to sort the results by.                      |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"value": "string",
		"type": "url",
		"test": true,
		"safe": false,
		"active": true,
		"internalHits": 0,
		"externalHits": 0,
		"expiresAt": "2025-08-17T09:25:36.774Z",
		"source": "string",
		"sharedWith": [
			"string"
		],
		"tags": [],
		"firstSeen": "2025-08-17T09:25:36.775Z",
		"lastSeen": "2025-08-17T09:25:36.775Z",
		"reputation": 0,
		"severity": "unknown",
		"comments": "string",
		"extendedInformation": "",
		"sources": []
	}
]
```

## Workflow Library Example

[List Indicators with Netskope Cte and Send Results Via Email](https://library.blinkops.com/workflows/list-indicators-with-netskope-cte-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-indicators-with-netskope-cte-and-send-results-via-email/canvas" />
</div>
