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

# ContactOut: Count People

> Free audience sizing. Returns only the total number of matching profiles, with no per-profile charge. Use this before contactout_search_people.

Free audience sizing.

<Info>
  Tool ID: `contactout_count_people`
</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(
  'contactout_count_people',
  {
    "name": "Example",
    "job_title": [
      "VP of Engineering"
    ],
    "exclude_job_titles": [
      "VP of Engineering"
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute contactout_count_people --input '{
  "name": "Example",
  "job_title": [
    "VP of Engineering"
  ],
  "exclude_job_titles": [
    "VP of Engineering"
  ]
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "status_code": 123,
    "total_results": 123
  }
}
```

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

## Input reference

Accepts the same filter parameters as People Search API. See People Search for the full list of supported filter fields.

| Name                                 | Type                            | Required | Default | Details                             |
| ------------------------------------ | ------------------------------- | -------- | ------- | ----------------------------------- |
| `payload.name`                       | `string`                        | No       | —       | —                                   |
| `payload.job_title`                  | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.exclude_job_titles`         | `array`                         | No       | —       | —                                   |
| `payload.current_titles_only`        | `boolean`                       | No       | —       | —                                   |
| `payload.include_related_job_titles` | `boolean`                       | No       | —       | —                                   |
| `payload.match_experience`           | `"current" \| "past" \| "both"` | No       | —       | Allowed: `current`, `past`, `both`. |
| `payload.job_function`               | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.seniority`                  | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.skills`                     | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.languages`                  | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.education`                  | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.educations`                 | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.location`                   | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.location_radius`            | `integer`                       | No       | —       | Minimum: 1. Maximum: 500.           |
| `payload.current_work_location`      | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.past_work_location`         | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.company`                    | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.exclude_companies`          | `array`                         | No       | —       | —                                   |
| `payload.company_filter`             | `"current" \| "past" \| "both"` | No       | —       | Allowed: `current`, `past`, `both`. |
| `payload.current_company_only`       | `boolean`                       | No       | —       | —                                   |
| `payload.domain`                     | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.industry`                   | `array`                         | No       | —       | Maximum items: 50.                  |
| `payload.keyword`                    | `string`                        | No       | —       | —                                   |
| `payload.company_size`               | `array`                         | No       | —       | Maximum items: 8.                   |
| `payload.years_of_experience`        | `array`                         | No       | —       | Maximum items: 20.                  |
| `payload.years_in_current_role`      | `array`                         | No       | —       | Maximum items: 20.                  |
| `payload.recently_changed_jobs`      | `boolean`                       | No       | —       | —                                   |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Accepts the same filter parameters as People Search API. See People Search for the full list of supported filter fields.",
    "properties": {
      "name": {
        "type": "string"
      },
      "job_title": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "exclude_job_titles": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "current_titles_only": {
        "type": "boolean"
      },
      "include_related_job_titles": {
        "type": "boolean"
      },
      "match_experience": {
        "type": "string",
        "enum": [
          "current",
          "past",
          "both"
        ]
      },
      "job_function": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "seniority": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "skills": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "languages": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "object",
          "properties": {
            "language": {
              "type": "string"
            },
            "proficiency": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "required": [
            "language"
          ],
          "additionalProperties": false
        }
      },
      "education": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "educations": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "object",
          "properties": {
            "school_name": {
              "type": "string"
            },
            "field_of_study": {
              "type": "string"
            },
            "location": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "location": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "location_radius": {
        "type": "integer",
        "minimum": 1,
        "maximum": 500
      },
      "current_work_location": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "past_work_location": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "company": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "exclude_companies": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_filter": {
        "type": "string",
        "enum": [
          "current",
          "past",
          "both"
        ]
      },
      "current_company_only": {
        "type": "boolean"
      },
      "domain": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "industry": {
        "type": "array",
        "maxItems": 50,
        "items": {
          "type": "string"
        }
      },
      "keyword": {
        "type": "string"
      },
      "company_size": {
        "type": "array",
        "maxItems": 8,
        "items": {
          "type": "string"
        }
      },
      "years_of_experience": {
        "type": "array",
        "maxItems": 20,
        "items": {
          "type": "string"
        }
      },
      "years_in_current_role": {
        "type": "array",
        "maxItems": 20,
        "items": {
          "type": "string"
        }
      },
      "recently_changed_jobs": {
        "type": "boolean"
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                        | Type      | Required | Default | Details                                        |
| --------------------------- | --------- | -------- | ------- | ---------------------------------------------- |
| `result.data`               | `object`  | Yes      | —       | Provider response payload.                     |
| `result.data.status_code`   | `integer` | No       | —       | —                                              |
| `result.data.total_results` | `integer` | No       | —       | —                                              |
| `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": "Provider response payload.",
        "properties": {
          "status_code": {
            "type": "integer"
          },
          "total_results": {
            "type": "integer"
          }
        },
        "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

* [ContactOut provider guide](/docs/providers/contactout/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)
