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

# Send Observable Analysis Request

Submit an observable for security analysis.

**Note:** At least one of the following parameters is required:

* `Analyzers Requested`
* `Connectors Requested`

<Note>
  External Documentation

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

## Basic Parameters

<div className="integrations-table">
  | Parameter                 | Description                                                                                                                                                                                                                                                                                                                                                      |
  | ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Analyzers Requested       | A comma-separated list of specific analyzers to run.<br /><br />For the list of all observable analyzers, refer to [Intel Owl API documentation](https://intelowlproject.github.io/docs/IntelOwl/usage/?utm_source=chatgpt.com#observable-analyzers-ip-domain-url-hash).<br /><br />**Important!** Required if `Connectors Requested` parameter is not provided. |
  | Connectors Requested      | A comma-separated list of specific connectors to run.<br /><br />For the list of all connectors, refer to [Intel Owl API documentation](https://intelowlproject.github.io/docs/IntelOwl/usage/?utm_source=chatgpt.com#list-of-pre-built-connectors).<br /><br />**Important!** Required if `Analyzers Requested` parameter is not provided.                      |
  | Observable Classification | The type of observable being analyzed.                                                                                                                                                                                                                                                                                                                           |
  | Observable Name           | The observable to analyze (IP address, domain, URL, file hash, etc.).                                                                                                                                                                                                                                                                                            |
  | TLP                       | Traffic Light Protocol classification level to control information sharing.                                                                                                                                                                                                                                                                                      |
  | Tags Labels               | A comma-separated list of tag labels to assign to the analysis.                                                                                                                                                                                                                                                                                                  |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                       | Description                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Analyzers Runtime Configuration | A configuration object to override default analyzers configuration.<br /><br />For example:<br /><pre><code>\{<br />    "Doc\_Info": \{<br />      "additional\_passwords\_to\_check": \["passwd", "2020"]<br />    }<br />}</code></pre>For more information about the `Runtime Configuration`, refer to [Intel Owl API documentation](https://intelowlproject.github.io/docs/IntelOwl/advanced_usage/#customize-analyzer-execution). |
</div>

## Example Output

```json theme={"dark"}
{
	"job_id": 19,
	"analyzers_running": [],
	"connectors_running": [
		"AbuseSubmitter",
		"EmailSender"
	],
	"visualizers_running": [],
	"playbook_running": null,
	"investigation": null,
	"status": "accepted",
	"already_exists": false
}
```

## Workflow Library Example

[Send Observable Analysis Request with Intel Owl and Send Results Via Email](https://library.blinkops.com/workflows/send-observable-analysis-request-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/send-observable-analysis-request-with-intel-owl-and-send-results-via-email/canvas" />
</div>
