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

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

Lookup Data.

<Info>
  Tool ID: `zoominfo_lookup`
</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_lookup',
  {
    "fieldName": "board-members"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoominfo_lookup --input '{
  "fieldName": "board-members"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoominfo_lookup --json` for the complete live contract.

## Input reference

Returns lookup data.

| Name                | Type                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.fieldName` | `"board-members" \| "buying-groups" \| "company-rankings" \| "company-types" \| "continents" \| "countries" \| "departments" \| "employee-count" \| "hashtags" \| "industries" \| "intent-topics" \| "job-functions" \| "job-titles" \| "management-levels" \| "metro-regions" \| "naics-codes" \| "news-categories" \| "revenue-ranges" \| "scoop-departments" \| "scoop-topics" \| "scoop-types" \| "sic-codes" \| "states" \| "sub-unit-types" \| "tech-categories" \| "tech-products" \| "tech-skills" \| "tech-vendors" \| "years-of-experience"` | Yes      | —       | The name of the lookup field e.g. 'company-rankings' Allowed: `board-members`, `buying-groups`, `company-rankings`, `company-types`, `continents`, `countries`, `departments`, `employee-count`, `hashtags`, `industries`, `intent-topics`, `job-functions`, `job-titles`, `management-levels`, `metro-regions`, `naics-codes`, `news-categories`, `revenue-ranges`, `scoop-departments`, `scoop-topics`, `scoop-types`, `sic-codes`, `states`, `sub-unit-types`, `tech-categories`, `tech-products`, `tech-skills`, See the live schema for the complete constraint. |
| `payload.filter`    | `object`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | No       | —       | The category of the lookup field. Only applicable when accessing hashtag lookups e.g. 'Unified Communications'                                                                                                                                                                                                                                                                                                                                                                                                                                                        |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns lookup data.",
    "properties": {
      "fieldName": {
        "type": "string",
        "description": "The name of the lookup field e.g. 'company-rankings'",
        "enum": [
          "board-members",
          "buying-groups",
          "company-rankings",
          "company-types",
          "continents",
          "countries",
          "departments",
          "employee-count",
          "hashtags",
          "industries",
          "intent-topics",
          "job-functions",
          "job-titles",
          "management-levels",
          "metro-regions",
          "naics-codes",
          "news-categories",
          "revenue-ranges",
          "scoop-departments",
          "scoop-topics",
          "scoop-types",
          "sic-codes",
          "states",
          "sub-unit-types",
          "tech-categories",
          "tech-products",
          "tech-skills",
          "tech-vendors",
          "years-of-experience"
        ]
      },
      "filter": {
        "type": "object",
        "description": "The category of the lookup field. Only applicable when accessing hashtag lookups e.g. 'Unified Communications'",
        "properties": {
          "category": {
            "type": "string",
            "description": "The category of the lookup field. Only applicable when accessing hashtag lookups e.g. 'Unified Communications'"
          },
          "parentCategory": {
            "type": "string",
            "description": "The parentCategory. Only applicable when accessing hashtag and tech lookups e.g. 'Communication and Collaboration'"
          },
          "subCategory": {
            "type": "string",
            "description": "The subCategory. Only applicable when accessing hashtag and tech lookups e.g. 'Unified Communications as a Service'"
          },
          "vendor": {
            "type": "string",
            "description": "The vendor of the lookup field. Only applicable when accessing hashtag and tech lookups e.g. 'microsoft corporation'"
          }
        },
        "required": [],
        "additionalProperties": false
      }
    },
    "required": [
      "fieldName"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                                  | Type                    | Required | Default         | Details                                          |
| --------------------------------------------------------------------- | ----------------------- | -------- | --------------- | ------------------------------------------------ |
| `result.data`                                                         | `object`                | Yes      | —               | Lookup response                                  |
| `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      | `"BoardMember"` | The type of the resource                         |
| `result.data.data[].attributes`                                       | `object`                | Yes      | —               | Attributes for a basic entity                    |
| `result.data.data[].attributes.name`                                  | `string`                | Yes      | —               | The name of the entity                           |
| `result.data.data[].attributes.accessLevel`                           | `"private" \| "public"` | Yes      | —               | —                                                |
| `result.data.data[].attributes.isDefault`                             | `boolean`               | Yes      | —               | Whether this is the default buying group         |
| `result.data.data[].attributes.personas`                              | `array`                 | Yes      | —               | The details of the personas of the buying group  |
| `result.data.data[].attributes.personas[].departmentsAndJobFunctions` | `array`                 | Yes      | —               | The departments and job functions of the persona |
| `result.data.data[].attributes.personas[].managementLevels`           | `array`                 | Yes      | —               | The management levels of the persona             |
| `result.data.data[].attributes.personas[].titles`                     | `array \| null`         | No       | —               | The titles of the persona                        |
| `result.data.data[].attributes.category`                              | `string`                | Yes      | —               | The category of the topic                        |
| `result.data.data[].attributes.department`                            | `string`                | Yes      | —               | The department of the topic                      |
| `result.data.data[].attributes.description`                           | `string`                | Yes      | —               | The description of the topic                     |
| `result.data.data[].attributes.jobFunction`                           | `string`                | Yes      | —               | The job function of the topic                    |
| `result.data.data[].attributes.order`                                 | `string`                | No       | —               | The ranking order of the entity                  |
| `result.data.data[].attributes.categories`                            | `array`                 | Yes      | —               | The names of the tech categories                 |
| `result.data.data[].attributes.attribute`                             | `string`                | No       | —               | An attribute of the entity                       |
| `result.meta`                                                         | `object`                | No       | —               | Additional response metadata (status, paging).   |

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

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