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

# Get Actor IOCs

Retrieve the `IOCs` associated with the threat actor.

**Notes:**

* Enrichment allows access to actor data for `8` hours without consuming tokens.
* Maximum `1` request per second is allowed.

**Response fields:**

* `tokenCharged`: If false, the request does not consume tokens.
* `tokensLeft`: Shows the remaining token balance.

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                       |
  | --------------- | ------------------------------------------------------------------------------------------------- |
  | End Date        | The end date to filter by.                                                                        |
  | Filter By Time  | The time difference to filter by.                                                                 |
  | Filter By Types | A comma-separated list of IOC types to filter by.                                                 |
  | Offset          | The offset to start returning results from.                                                       |
  | Query           | -                                                                                                 |
  | Size            | The maximum number of results to return.<br /><br />**Note:** Maximum `1000` results are allowed. |
  | Sort By         | The field to sort the results by.                                                                 |
  | Sort Order      | The order to sort the results by.                                                                 |
  | Start Date      | The start date to filter by.                                                                      |
  | Threat Actor ID | The ID of the threat actor. Can be obtained by the `List Threat Actors` action.                   |
</div>

## Example Output

```json theme={"dark"}
{
	"totalUnfilteredCount": "Number",
	"total": "Number",
	"results": [
		{
			"id": "string",
			"linked_entities": [
				{
					"date": "Unix timestamps",
					"description": "String",
					"label": "String",
					"type": "String",
					"value": "String"
				}
			],
			"note": "String",
			"detection_date": "Unix timestamps",
			"reference": {
				"date": "Unix timestamps",
				"description": "String",
				"label": "String",
				"type": "String",
				"value": "String"
			},
			"updated_date": "Unix timestamps",
			"type": "String",
			"value": "String"
		}
	],
	"filters": {
		"types": [
			{
				"key": "String",
				"doc_count": "Number"
			}
		]
	},
	"tokenCharged": "Boolean",
	"tokensLeft": "Number"
}
```

## Workflow Library Example

[Get Actor Iocs with Kela and Send Results Via Email](https://library.blinkops.com/workflows/get-actor-iocs-with-kela-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/get-actor-iocs-with-kela-and-send-results-via-email/canvas" />
</div>
