> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ZoomInfo: Action Doc

> Search News. ZoomInfo Search News reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Search News.

<Info>
  Tool ID: `zoominfo_search_news`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoominfo_search_news',
  {
    "data": {
      "type": "NewsSearch",
      "attributes": {
        "categories": [
          "example"
        ],
        "url": [
          "https://example.com"
        ],
        "pageDateMin": "2026-01-15"
      }
    }
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoominfo_search_news --input '{
  "data": {
    "type": "NewsSearch",
    "attributes": {
      "categories": [
        "example"
      ],
      "url": [
        "https://example.com"
      ],
      "pageDateMin": "2026-01-15"
    }
  }
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "data": [
      {
        "id": "id_123",
        "type": "News",
        "attributes": {
          "domain": "example.com",
          "title": "VP of Engineering",
          "url": "https://example.com"
        }
      }
    ]
  }
}
```

Use `deepline tools get zoominfo_search_news --json` for the latest machine-readable contract.

## Input reference

News search request.

| Name           | Type     | Required | Default | Details                                                                                                                                                                                                                                                                                               |
| -------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.page` | `object` | No       | —       | The page of results that you want to retrieve. If not provided, the first page of results will be returned. Use in connection with `page[size]` to handle large result sets. Example: `page[number]=2&page[size]=25` will return the second page of result (results 26-50 based on the `sort` value). |
| `payload.data` | `object` | Yes      | —       | News search request resource.                                                                                                                                                                                                                                                                         |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "News search request.",
    "properties": {
      "page": {
        "type": "object",
        "description": "The page of results that you want to retrieve. If not provided, the first page of results will be returned. Use in connection with `page[size]` to handle large result sets. Example: `page[number]=2&page[size]=25` will return the second page of result (results 26-50 based on the `sort` value).",
        "properties": {
          "number": {
            "type": "integer",
            "description": "The page of results that you want to retrieve. If not provided, the first page of results will be returned. Use in connection with `page[size]` to handle large result sets. Example: `page[number]=2&page[size]=25` will return the second page of result (results 26-50 based on the `sort` value).",
            "minimum": 1,
            "format": "int32"
          },
          "size": {
            "type": "integer",
            "description": "Sets the number of records to return per page. If not provided, the default is 25 records per page. Valid values for page size are any integer from 1 to 100.",
            "minimum": 1,
            "maximum": 100,
            "format": "int32"
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "data": {
        "type": "object",
        "description": "News search request resource.",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of the resource",
            "default": "NewsSearch",
            "pattern": "NewsSearch"
          },
          "attributes": {
            "type": "object",
            "description": "Request attributes for news.",
            "properties": {
              "categories": {
                "type": "array",
                "description": "Category of news articles. Accepts an Array of String. See the 'News Categories' lookup endpoint for values.",
                "items": {
                  "type": "string"
                }
              },
              "url": {
                "type": "array",
                "description": "News URL strings. Accepts an Array of String. Minimum of 5 characters per input",
                "items": {
                  "type": "string"
                }
              },
              "pageDateMin": {
                "type": "string",
                "description": "Specify the earliest publishing date for news articles returned. Uses YYYY-MM-DD format (e.g., 2020-01-01 will return all news articles published on or after Jan 1, 2020).",
                "format": "date"
              },
              "pageDateMax": {
                "type": "string",
                "description": "Specify the latest publishing date for news articles articles. Uses YYYY-MM-DD format (e.g., 2020-01-31 will return all new articles published on or before Jan 31, 2020).",
                "format": "date"
              }
            },
            "additionalProperties": false
          }
        },
        "required": [
          "type",
          "attributes"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                           | Type      | Required | Default  | Details                                                                                                                                                             |
| ---------------------------------------------- | --------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                  | `object`  | Yes      | —        | A list of News that match the criteria specified in the request                                                                                                     |
| `result.data.data`                             | `array`   | Yes      | —        | The primary data of the document                                                                                                                                    |
| `result.data.data[].id`                        | `string`  | Yes      | —        | The unique identifier for the resource                                                                                                                              |
| `result.data.data[].type`                      | `string`  | Yes      | `"News"` | The type of the resource Pattern: `News`.                                                                                                                           |
| `result.data.data[].attributes`                | `object`  | Yes      | —        | Attributes of a single news result.                                                                                                                                 |
| `result.data.data[].attributes.domain`         | `string`  | No       | —        | Domain name of the news source.                                                                                                                                     |
| `result.data.data[].attributes.title`          | `string`  | No       | —        | Title of the news article.                                                                                                                                          |
| `result.data.data[].attributes.url`            | `string`  | No       | —        | Full URL of the article.                                                                                                                                            |
| `result.data.data[].attributes.imageUrl`       | `string`  | No       | —        | URL of the article image.                                                                                                                                           |
| `result.data.data[].attributes.pageDate`       | `string`  | No       | —        | Publish date of the article. Format: `date-time`.                                                                                                                   |
| `result.data.data[].attributes.categories`     | `array`   | No       | —        | Categories assigned to the article.                                                                                                                                 |
| `result.data.data[].attributes.description`    | `string`  | No       | —        | Summary or body of the article.                                                                                                                                     |
| `result.data.data[].attributes.company`        | `array`   | No       | —        | Companies mentioned in the article.                                                                                                                                 |
| `result.data.data[].attributes.company[].id`   | `integer` | Yes      | —        | Unique ZoomInfo identifier for the company. Format: `int64`.                                                                                                        |
| `result.data.data[].attributes.company[].name` | `string`  | Yes      | —        | Company name.                                                                                                                                                       |
| `result.data.meta`                             | `object`  | No       | —        | Metadata including paging information and the total number of records in the result set                                                                             |
| `result.data.meta.totalResults`                | `integer` | Yes      | —        | The total number of results based on the specified filters Format: `uint32`.                                                                                        |
| `result.data.meta.page`                        | `object`  | Yes      | —        | Meta information related to the current page and total number of pages                                                                                              |
| `result.data.meta.page.total`                  | `integer` | Yes      | —        | The total number of pages within the current result set Format: `uint32`.                                                                                           |
| `result.data.meta.page.number`                 | `integer` | Yes      | —        | The current page number of the results Format: `uint32`.                                                                                                            |
| `result.data.links`                            | `object`  | No       | —        | Helpful links for fetching different pages of data from the current result set. When using these links, please provide the exact same request body between requests |
| `result.data.links.first`                      | `string`  | No       | —        | A link to the first page of data Format: `uri`.                                                                                                                     |
| `result.data.links.last`                       | `string`  | No       | —        | A link to the last page of data Format: `uri`.                                                                                                                      |
| `result.data.links.prev`                       | `string`  | No       | —        | A link to the previous page of data Format: `uri`.                                                                                                                  |
| `result.data.links.next`                       | `string`  | No       | —        | A link to the next page of data Format: `uri`.                                                                                                                      |
| `result.meta`                                  | `object`  | No       | —        | Additional response metadata (status, paging).                                                                                                                      |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "A list of News that match the criteria specified in the request",
        "properties": {
          "data": {
            "type": "array",
            "description": "The primary data of the document",
            "items": {
              "type": "object",
              "description": "News",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique identifier for the resource"
                },
                "type": {
                  "type": "string",
                  "description": "The type of the resource",
                  "default": "News",
                  "pattern": "News"
                },
                "attributes": {
                  "type": "object",
                  "description": "Attributes of a single news result.",
                  "properties": {
                    "domain": {
                      "type": "string",
                      "description": "Domain name of the news source."
                    },
                    "title": {
                      "type": "string",
                      "description": "Title of the news article."
                    },
                    "url": {
                      "type": "string",
                      "description": "Full URL of the article."
                    },
                    "imageUrl": {
                      "type": "string",
                      "description": "URL of the article image."
                    },
                    "pageDate": {
                      "type": "string",
                      "description": "Publish date of the article.",
                      "format": "date-time"
                    },
                    "categories": {
                      "type": "array",
                      "description": "Categories assigned to the article.",
                      "items": {
                        "type": "string"
                      }
                    },
                    "description": {
                      "type": "string",
                      "description": "Summary or body of the article."
                    },
                    "company": {
                      "type": "array",
                      "description": "Companies mentioned in the article.",
                      "items": {
                        "type": "object",
                        "description": "Company related to the news article.",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "Unique ZoomInfo identifier for the company.",
                            "format": "int64"
                          },
                          "name": {
                            "type": "string",
                            "description": "Company name."
                          }
                        },
                        "required": [
                          "id",
                          "name"
                        ],
                        "additionalProperties": false
                      }
                    }
                  },
                  "additionalProperties": false
                }
              },
              "required": [
                "id",
                "type",
                "attributes"
              ],
              "additionalProperties": false
            }
          },
          "meta": {
            "type": "object",
            "description": "Metadata including paging information and the total number of records in the result set",
            "properties": {
              "totalResults": {
                "type": "integer",
                "description": "The total number of results based on the specified filters",
                "format": "uint32"
              },
              "page": {
                "type": "object",
                "description": "Meta information related to the current page and total number of pages",
                "properties": {
                  "total": {
                    "type": "integer",
                    "description": "The total number of pages within the current result set",
                    "format": "uint32"
                  },
                  "number": {
                    "type": "integer",
                    "description": "The current page number of the results",
                    "format": "uint32"
                  }
                },
                "required": [
                  "total",
                  "number"
                ],
                "additionalProperties": false
              }
            },
            "required": [
              "totalResults",
              "page"
            ],
            "additionalProperties": false
          },
          "links": {
            "type": "object",
            "description": "Helpful links for fetching different pages of data from the current result set. When using these links, please provide the exact same request body between requests",
            "properties": {
              "first": {
                "type": "string",
                "description": "A link to the first page of data",
                "format": "uri"
              },
              "last": {
                "type": "string",
                "description": "A link to the last page of data",
                "format": "uri"
              },
              "prev": {
                "type": "string",
                "description": "A link to the previous page of data",
                "format": "uri"
              },
              "next": {
                "type": "string",
                "description": "A link to the next page of data",
                "format": "uri"
              }
            },
            "additionalProperties": false
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [ZoomInfo provider guide](/docs/providers/zoominfo/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
