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

Get detailed information about a specific analysis job, including reports and results.

<Note>
  External Documentation

  To learn more, visit the [Intel Owl documentation](https://intelowlproject.github.io/docs/pyintelowl/IntelOwlClass/#docs.Submodules.pyintelowl.pyintelowl.IntelOwl.get_job_by_id).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                             |
  | --------- | --------------------------------------- |
  | Job ID    | The ID of the analysis job to retrieve. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 21,
	"user": {
		"username": "test"
	},
	"tags": [
		{
			"id": 1,
			"label": "label",
			"color": "#BA92C6"
		}
	],
	"comments": [],
	"status": "failed",
	"pivots_to_execute": [],
	"analyzers_to_execute": [],
	"analyzers_requested": [],
	"connectors_to_execute": [
		"EmailSender"
	],
	"connectors_requested": [
		"EmailSender"
	],
	"visualizers_to_execute": [],
	"playbook_requested": null,
	"playbook_to_execute": null,
	"investigation_id": null,
	"investigation_name": null,
	"permissions": {
		"kill": true,
		"delete": true,
		"plugin_actions": true
	},
	"data_model": {
		"id": 2,
		"analyzers_report": [],
		"signatures": [],
		"evaluation": null,
		"reliability": 5,
		"kill_chain_phase": null,
		"external_references": [],
		"related_threats": [],
		"tags": null,
		"malware_family": null,
		"additional_info": {},
		"date": "2025-08-18T10:20:18.576190Z",
		"comments": [],
		"file_information": {},
		"stats": {}
	},
	"file_name": "test.txt",
	"file_mimetype": "text/plain",
	"is_sample": true,
	"observable_name": "test.txt",
	"observable_classification": "file",
	"md5": "d1234feb12345aa1234b120123a1a012",
	"analyzer_reports": [],
	"connector_reports": [
		{
			"name": "EmailSender",
			"process_time": 0.06,
			"status": "FAILED",
			"end_time": "2025-08-18T10:20:18.688280Z",
			"parameters": {
				"body": "test",
				"subject": "test"
			},
			"type": "connector",
			"id": 15,
			"report": {},
			"errors": [
				"Invalid address \"\""
			],
			"start_time": "2025-08-18T10:20:18.628901Z"
		}
	],
	"pivot_reports": [],
	"visualizer_reports": [],
	"received_request_time": "2025-08-18T10:20:18.420185Z",
	"related_investigation_number": 0,
	"finished_analysis_time": "2025-08-18T10:20:18.853990Z",
	"process_time": 0.43,
	"warnings": [],
	"errors": []
}
```

## Workflow Library Example

[Get Job with Intel Owl and Send Results Via Email](https://library.blinkops.com/workflows/get-job-with-intel-owl-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-job-with-intel-owl-and-send-results-via-email/canvas" />
</div>
