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

Retrieve data and statistics about the activity of a threat actor.

**Notes:**

* Enrichment allows access to actor data for `8` hours without consuming tokens.
* Multiple accounts for an actor in the same source are returned in a single response.
* Activity reports are returned without message content.
* 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                                                                                                                                                                        |
  | --------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Source          | The source the actor is active in. Can be retrieved from the `active_sources` field of the `Get Actor Profile` action. <br /><br />**Note:** This parameter is not case-sensitive. |
  | Threat Actor ID | The ID of the threat actor. Can be obtained by the `List Threat Actors` action.                                                                                                    |
</div>

## Example Output

```json theme={"dark"}
{
	"sourceData": [
		{
			"profileId": "String",
			"profileUrl": "String (URL)",
			"registrationDate": "Unix timestamps",
			"totalPosts": "Number",
			"firstPostDate": "Unix timestamps",
			"lastPostDate": "Unix timestamps",
			"handles": [
				{
					"value": "String",
					"postedDate": "Unix timestamps"
				}
			],
			"handlesTimeline": [
				{
					"value": "String",
					"dateRange": [
						{
							"start": "Unix timestamps",
							"end": "Unix timestamps"
						}
					]
				}
			],
			"profilePictures": [
				{
					"value": "String (URL)",
					"postedDate": "Unix timestamps"
				}
			],
			"signatures": [
				{
					"value": "string",
					"postedDate": "Unix timestamps"
				}
			],
			"groups": [
				{
					"value": "string",
					"totalMessages": "Number"
				}
			],
			"bio": [
				{
					"value": "string",
					"postedDate": "Unix timestamps"
				}
			],
			"telegramId": "String",
			"index": "string"
		}
	],
	"totalAuthorsFromSource": "Number",
	"tokenCharged": "Boolean",
	"tokensLeft": "Number"
}
```

## Workflow Library Example

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