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

Access the search results by a specific search's ID.

<Note>
  External Documentation

  To learn more, visit the [Splunk documentation](https://docs.splunk.com/Documentation/Splunk/9.1.2/RESTREF/RESTsearch#search.2Fv2.2Fjobs.2F.7Bsearch_id.7D.2Fresults).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter   | Description                                    |
  | ----------- | ---------------------------------------------- |
  | Output Mode | Specifies the format for the returned output.  |
  | Search ID   | The ID of the search for which to get results. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                     |
  | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Add Summary To Metadata | Select to include field summary statistics in the response.                                                                                                                                                                                                                                                                     |
  | Count                   | The maximum number of results to return. If value is set to 0, then all available results are returned.                                                                                                                                                                                                                         |
  | Offset                  | The first result (inclusive) from which to begin returning data. This value is 0-indexed. Default value is 0. In 4.1+, negative offsets are allowed and are added to count to compute the absolute offset (for example, offset=-1 is the last available offset). Offsets in the results are always absolute and never negative. |
</div>

## Example Output

```json theme={"dark"}
{
	"preview": false,
	"init_offset": 0,
	"messages": [],
	"fields": [
		{
			"name": "<string>"
		}
	],
	"results": [
		{
			"_time": "2025-05-23T03:30:12.000-05:00"
		}
	],
	"highlighted": {}
}
```

## Workflow Library Example

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