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

# Context.dev: Contextdev Post People Enrich

> Enrich Person. Context.dev Contextdev Post People Enrich reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Enrich Person.

<Info>
  Tool ID: `contextdev_post_people_enrich`
</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(
  'contextdev_post_people_enrich',
  {
    "social_urls": [
      "https://example.com/resource"
    ],
    "name": {
      "first": "example",
      "last": "example"
    },
    "email": "jane.doe@example.com"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute contextdev_post_people_enrich --input '{
  "social_urls": [
    "https://example.com/resource"
  ],
  "name": {
    "first": "example",
    "last": "example"
  },
  "email": "jane.doe@example.com"
}' --json
```

## Example response

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

## Input reference

Identity clues for one person. Provide a person email, a person-profile social URL, or both first and last name with company, education, or location. All supplied clues are considered together.

| Name                  | Type      | Required | Default | Details                                                                                                                                                                                                                  |
| --------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `payload.social_urls` | `array`   | No       | —       | Minimum items: 1. Maximum items: 20.                                                                                                                                                                                     |
| `payload.name`        | `object`  | No       | —       | —                                                                                                                                                                                                                        |
| `payload.email`       | `string`  | No       | —       | Format: `email`. Maximum length: 320.                                                                                                                                                                                    |
| `payload.company`     | `object`  | No       | —       | —                                                                                                                                                                                                                        |
| `payload.education`   | `array`   | No       | —       | Minimum items: 1. Maximum items: 10.                                                                                                                                                                                     |
| `payload.location`    | `object`  | No       | —       | —                                                                                                                                                                                                                        |
| `payload.timeoutMS`   | `integer` | No       | —       | Optional timeout in milliseconds for the request. If the request takes longer than this value, it will be aborted with a 408 status code. Maximum allowed value is 300000ms (5 minutes). Minimum: 1000. Maximum: 300000. |
| `payload.tags`        | `array`   | No       | —       | Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters. Maximum items: 20.                                                                                                                             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Identity clues for one person. Provide a person email, a person-profile social URL, or both first and last name with company, education, or location. All supplied clues are considered together.",
    "properties": {
      "social_urls": {
        "type": "array",
        "minItems": 1,
        "maxItems": 20,
        "items": {
          "type": "string",
          "format": "uri"
        }
      },
      "name": {
        "type": "object",
        "properties": {
          "first": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100
          },
          "last": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100
          }
        },
        "additionalProperties": false
      },
      "email": {
        "type": "string",
        "maxLength": 320,
        "format": "email"
      },
      "company": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "domain": {
            "type": "string",
            "minLength": 1,
            "maxLength": 253
          }
        },
        "additionalProperties": false
      },
      "education": {
        "type": "array",
        "minItems": 1,
        "maxItems": 10,
        "items": {
          "type": "object",
          "properties": {
            "institution": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200
                },
                "domain": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 253
                }
              },
              "additionalProperties": false
            },
            "degree": {
              "type": "string",
              "minLength": 1,
              "maxLength": 200
            },
            "field_of_study": {
              "type": "string",
              "minLength": 1,
              "maxLength": 200
            },
            "graduation_year": {
              "type": "integer",
              "minimum": 1900,
              "maximum": 2200
            }
          },
          "additionalProperties": false
        }
      },
      "location": {
        "type": "object",
        "properties": {
          "city": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "region": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "country": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          }
        },
        "additionalProperties": false
      },
      "timeoutMS": {
        "type": "integer",
        "description": "Optional timeout in milliseconds for the request. If the request takes longer than this value, it will be aborted with a 408 status code. Maximum allowed value is 300000ms (5 minutes).",
        "minimum": 1000,
        "maximum": 300000
      },
      "tags": {
        "type": "array",
        "description": "Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.",
        "maxItems": 20,
        "items": {
          "type": "string",
          "minLength": 1,
          "maxLength": 50
        }
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                       | Type     | Required | Default | Details |
| -------------------------- | -------- | -------- | ------- | ------- |
| `result.data`              | `object` | Yes      | —       | —       |
| `result.data.match`        | `record` | Yes      | —       | —       |
| `result.data.key_metadata` | `object` | No       | —       | —       |
| `result.meta`              | `object` | No       | —       | —       |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "match": {
            "type": "object",
            "additionalProperties": true
          },
          "key_metadata": {
            "type": "object",
            "properties": {},
            "required": [],
            "additionalProperties": false
          }
        },
        "required": [
          "match"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "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

* [Context.dev provider guide](/docs/providers/contextdev/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)
