> ## 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 Scoops. ZoomInfo Search Scoops reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Search Scoops.

<Info>
  Tool ID: `zoominfo_search_scoops`
</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_scoops',
  {
    "data": {
      "type": "ScoopSearch",
      "attributes": {
        "publishedStartDate": "2026-01-15",
        "publishedEndDate": "2026-01-15",
        "updatedSinceCreation": true
      }
    }
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoominfo_search_scoops --input '{
  "data": {
    "type": "ScoopSearch",
    "attributes": {
      "publishedStartDate": "2026-01-15",
      "publishedEndDate": "2026-01-15",
      "updatedSinceCreation": true
    }
  }
}' --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": "Scoop",
        "attributes": {
          "id": "id_123",
          "publishedDate": "2026-01-15T12:00:00Z",
          "originalPublishedDate": "2026-01-15T12:00:00Z"
        }
      }
    ]
  }
}
```

Use `deepline tools get zoominfo_search_scoops --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.sort` | `string` | No       | —       | Sort results by the specified output field. Valid values are `scoopId`, `originalPublishedDate`, `description`, `link`, and `linkText`. Add minus sign ('-') for descending order. The default, if not provided, is to sort the results by `originalPublishedDate` in descending order (`-originalPublishedDate`) Examples: - `scoopId` will sort results by Scoop id in ascending alphabetical order. - `-description` will sort results in reverse alphabetical order by the Scoop description |
| `payload.data` | `object` | Yes      | —       | Scoop search request resource.                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |

<Info>
  This input schema is too large to embed without slowing the page. Get the complete live contract with `deepline tools get zoominfo_search_scoops --json`.
</Info>

## 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      | `"Scoop"` | The type of the resource Pattern: `Scoop`.                                                                                                                          |
| `result.data.data[].attributes`                                     | `object`  | Yes      | —         | Scoop search response attributes.                                                                                                                                   |
| `result.data.data[].attributes.id`                                  | `string`  | No       | —         | ZoomInfo unique identifier for a scoop.                                                                                                                             |
| `result.data.data[].attributes.publishedDate`                       | `string`  | No       | —         | Date when a scoop was published. Format: `date-time`.                                                                                                               |
| `result.data.data[].attributes.originalPublishedDate`               | `string`  | No       | —         | Date when a scoop was originally published. Format: `date-time`.                                                                                                    |
| `result.data.data[].attributes.linkText`                            | `string`  | No       | —         | Link text for a scoop.                                                                                                                                              |
| `result.data.data[].attributes.link`                                | `string`  | No       | —         | URL for a scoop.                                                                                                                                                    |
| `result.data.data[].attributes.description`                         | `string`  | No       | —         | Description associated with the scoop                                                                                                                               |
| `result.data.data[].attributes.topics`                              | `array`   | No       | —         | Scoop topics.                                                                                                                                                       |
| `result.data.data[].attributes.updateText`                          | `string`  | No       | —         | Text related to an updated scoop.                                                                                                                                   |
| `result.data.data[].attributes.types`                               | `array`   | No       | —         | Types associated with a scoop.                                                                                                                                      |
| `result.data.data[].attributes.company`                             | `object`  | No       | —         | ScoopCompany                                                                                                                                                        |
| `result.data.data[].attributes.company.id`                          | `string`  | No       | —         | Unique ZoomInfo identifier for a company.                                                                                                                           |
| `result.data.data[].attributes.company.name`                        | `string`  | No       | —         | Company name.                                                                                                                                                       |
| `result.data.data[].attributes.contacts`                            | `array`   | No       | —         | Contacts associated with a scoop.                                                                                                                                   |
| `result.data.data[].attributes.contacts[].id`                       | `integer` | No       | —         | Unique ZoomInfo identifier for a person. Format: `int64`.                                                                                                           |
| `result.data.data[].attributes.contacts[].firstName`                | `string`  | No       | —         | Contact first name.                                                                                                                                                 |
| `result.data.data[].attributes.contacts[].lastName`                 | `string`  | No       | —         | Contact last name.                                                                                                                                                  |
| `result.data.data[].attributes.contacts[].jobTitle`                 | `string`  | No       | —         | Contact job title at current place of employment.                                                                                                                   |
| `result.data.data[].attributes.contacts[].jobFunction`              | `array`   | No       | —         | Contact job function at their current place of employment.                                                                                                          |
| `result.data.data[].attributes.contacts[].jobFunction[].name`       | `string`  | No       | —         | Name of the job function.                                                                                                                                           |
| `result.data.data[].attributes.contacts[].jobFunction[].department` | `string`  | No       | —         | Department associated with the job function.                                                                                                                        |
| `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": "Scoop",
                  "pattern": "Scoop"
                },
                "attributes": {
                  "type": "object",
                  "description": "Scoop search response attributes.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ZoomInfo unique identifier for a scoop."
                    },
                    "publishedDate": {
                      "type": "string",
                      "description": "Date when a scoop was published.",
                      "format": "date-time"
                    },
                    "originalPublishedDate": {
                      "type": "string",
                      "description": "Date when a scoop was originally published.",
                      "format": "date-time"
                    },
                    "linkText": {
                      "type": "string",
                      "description": "Link text for a scoop."
                    },
                    "link": {
                      "type": "string",
                      "description": "URL for a scoop."
                    },
                    "description": {
                      "type": "string",
                      "description": "Description associated with the scoop"
                    },
                    "topics": {
                      "type": "array",
                      "description": "Scoop topics.",
                      "items": {
                        "type": "object",
                        "additionalProperties": {}
                      }
                    },
                    "updateText": {
                      "type": "string",
                      "description": "Text related to an updated scoop."
                    },
                    "types": {
                      "type": "array",
                      "description": "Types associated with a scoop.",
                      "items": {
                        "type": "object",
                        "additionalProperties": {}
                      }
                    },
                    "company": {
                      "type": "object",
                      "description": "ScoopCompany",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "Unique ZoomInfo identifier for a company."
                        },
                        "name": {
                          "type": "string",
                          "description": "Company name."
                        }
                      },
                      "additionalProperties": false
                    },
                    "contacts": {
                      "type": "array",
                      "description": "Contacts associated with a scoop.",
                      "items": {
                        "type": "object",
                        "description": "ScoopContact",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "Unique ZoomInfo identifier for a person.",
                            "format": "int64"
                          },
                          "firstName": {
                            "type": "string",
                            "description": "Contact first name."
                          },
                          "lastName": {
                            "type": "string",
                            "description": "Contact last name."
                          },
                          "jobTitle": {
                            "type": "string",
                            "description": "Contact job title at current place of employment."
                          },
                          "jobFunction": {
                            "type": "array",
                            "description": "Contact job function at their current place of employment.",
                            "items": {
                              "type": "object",
                              "description": "Contact job function at current place of employment.",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "description": "Name of the job function."
                                },
                                "department": {
                                  "type": "string",
                                  "description": "Department associated with the job function."
                                }
                              },
                              "additionalProperties": false
                            }
                          }
                        },
                        "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)
