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

# Amplemarket Post People Enrichment Requests: Inputs, Cost

> Start batch of person enrichments. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=amplemarket_post_people_enrichment_requests:{"leads":"{{leads}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                           | Type      | Required | Default | Description |
| ------------------------------ | --------- | -------- | ------- | ----------- |
| `payload.leads`                | `array`   | Yes      |         |             |
| `payload.reveal_email`         | `boolean` | No       |         |             |
| `payload.reveal_phone_numbers` | `boolean` | No       |         |             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Start batch of person enrichments",
    "properties": {
      "leads": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "format": "email"
            },
            "linkedin_url": {
              "type": "string"
            },
            "company_domain": {
              "type": "string"
            },
            "company_name": {
              "type": "string"
            },
            "name": {
              "type": "string"
            },
            "title": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "reveal_email": {
        "type": "boolean"
      },
      "reveal_phone_numbers": {
        "type": "boolean"
      }
    },
    "required": [
      "leads"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `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": {
          "id": {
            "type": "integer"
          },
          "object": {
            "type": "string",
            "enum": [
              "person_enrichment"
            ]
          },
          "status": {
            "type": "string",
            "enum": [
              "queued",
              "processing",
              "completed",
              "canceled",
              "error"
            ]
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer"
                },
                "status": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "enum": [
                    "enriched",
                    "not_found",
                    "gdpr_removed"
                  ]
                },
                "result": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "format": "uuid"
                    },
                    "object": {
                      "type": "string",
                      "enum": [
                        "person"
                      ]
                    },
                    "linkedin_url": {
                      "type": "string"
                    },
                    "name": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "email": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "first_name": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "last_name": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "title": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "headline": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "about": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "current_position_start_date": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "format": "date"
                    },
                    "current_position_description": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "location": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "image_url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "gender": {
                      "type": "string",
                      "enum": [
                        "male",
                        "female",
                        "likely_male",
                        "likely_female",
                        "unknown"
                      ]
                    },
                    "location_details": {
                      "type": "object",
                      "properties": {
                        "country": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "state": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "city": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "postal_code": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "lat": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "long": {
                          "type": [
                            "number",
                            "null"
                          ]
                        }
                      },
                      "additionalProperties": false
                    },
                    "experiences": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "items": {
                        "type": "object",
                        "properties": {
                          "object": {
                            "type": "string",
                            "enum": [
                              "experience"
                            ]
                          },
                          "title": {
                            "type": "string"
                          },
                          "company_name": {
                            "type": "string"
                          },
                          "company_linkedin_url": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "uri"
                          },
                          "description": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "start_date": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "date"
                          },
                          "end_date": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "date"
                          }
                        },
                        "required": [
                          "object",
                          "title",
                          "company_name",
                          "company_linkedin_url",
                          "description",
                          "start_date",
                          "end_date"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "educations": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "items": {
                        "type": "object",
                        "properties": {
                          "object": {
                            "type": "string",
                            "enum": [
                              "education"
                            ]
                          },
                          "degree": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "field_of_study": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "school_name": {
                            "type": "string"
                          },
                          "school_linkedin_url": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "uri"
                          },
                          "start_date": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "date"
                          },
                          "end_date": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "format": "date"
                          }
                        },
                        "required": [
                          "object",
                          "degree",
                          "field_of_study",
                          "school_name",
                          "school_linkedin_url",
                          "start_date",
                          "end_date"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "languages": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "items": {
                        "type": "object",
                        "properties": {
                          "object": {
                            "type": "string",
                            "enum": [
                              "language"
                            ]
                          },
                          "language": {
                            "type": "string"
                          },
                          "iso_code": {
                            "type": "string"
                          },
                          "proficiency": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "object",
                          "language",
                          "iso_code",
                          "proficiency"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "phone_numbers": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "items": {
                        "type": "object",
                        "properties": {
                          "object": {
                            "type": "string",
                            "enum": [
                              "phone_number"
                            ]
                          },
                          "id": {
                            "type": "string",
                            "format": "uuid"
                          },
                          "number": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "mobile",
                              "office",
                              "phone",
                              "landline",
                              "voip",
                              "direct"
                            ]
                          },
                          "source": {
                            "type": "string",
                            "description": "Origin of the phone number. Amplemarket returns uploaded_by_user for numbers supplied through post_contacts.",
                            "enum": [
                              "amplemarket",
                              "crm",
                              "user_uploaded",
                              "uploaded_by_user"
                            ]
                          },
                          "is_wrong_number": {
                            "type": "boolean"
                          },
                          "is_dnc_listed": {
                            "type": "boolean",
                            "description": "Present only when the account has phone number DNC list enabled"
                          },
                          "kind": {
                            "type": "string",
                            "description": "Phone number kind. Amplemarket returns this alongside the documented type field."
                          },
                          "uploaded_id": {
                            "type": "string",
                            "description": "Identifier of the uploaded phone number record, present when a caller supplied the number."
                          }
                        },
                        "required": [
                          "object",
                          "id",
                          "number",
                          "type",
                          "is_wrong_number"
                        ],
                        "additionalProperties": true
                      }
                    },
                    "company": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "format": "uuid"
                        },
                        "object": {
                          "type": "string",
                          "enum": [
                            "company"
                          ]
                        },
                        "linkedin_url": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "overview": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "website": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "keywords": {
                          "type": [
                            "array",
                            "null"
                          ],
                          "items": {
                            "type": "string"
                          }
                        },
                        "followers": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "linkedin_presence": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "`massive` — Massive following (100,000+ followers), `large` — Large following (10,000 - 99,999 followers), `moderate` — Moderate following (1,000 - 9,999 followers), `limited` — Limited following (1 - 999 followers), `none` — No following (0 followers). All ranges are inclusive.",
                          "enum": [
                            "massive",
                            "large",
                            "moderate",
                            "limited",
                            "none"
                          ]
                        },
                        "estimated_number_of_employees": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "size": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "enum": [
                            "10001+ employees",
                            "201-500 employees",
                            "51-200 employees",
                            "11-50 employees",
                            "1-10 employees"
                          ]
                        },
                        "location": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "location_details": {
                          "type": "object",
                          "properties": {
                            "country": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "state": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "city": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "postal_code": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "lat": {
                              "type": [
                                "number",
                                "null"
                              ]
                            },
                            "long": {
                              "type": [
                                "number",
                                "null"
                              ]
                            }
                          },
                          "additionalProperties": false
                        },
                        "locations": {
                          "type": [
                            "array",
                            "null"
                          ],
                          "items": {
                            "type": "object",
                            "properties": {
                              "address": {
                                "type": "string",
                                "description": "Full address as a single string"
                              },
                              "is_primary": {
                                "type": "boolean",
                                "description": "Indicates if this is the primary location"
                              },
                              "country": {
                                "type": [
                                  "string",
                                  "null"
                                ],
                                "description": "Country name (e.g., United States)"
                              },
                              "state": {
                                "type": [
                                  "string",
                                  "null"
                                ],
                                "description": "State or subdivision name (e.g., California, New York)"
                              },
                              "city": {
                                "type": [
                                  "string",
                                  "null"
                                ],
                                "description": "City name"
                              },
                              "postal_code": {
                                "type": [
                                  "string",
                                  "null"
                                ],
                                "description": "Postal code"
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "logo_url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "founded_year": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "traffic_rank": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "sic_codes": {
                          "type": [
                            "array",
                            "null"
                          ],
                          "items": {
                            "type": "integer"
                          }
                        },
                        "naics_codes": {
                          "type": [
                            "array",
                            "null"
                          ],
                          "items": {
                            "type": "integer"
                          }
                        },
                        "type": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "enum": [
                            "Public Company",
                            "Educational",
                            "Self Employed",
                            "Government Agency",
                            "Non Profit",
                            "Self Owned",
                            "Privately Held",
                            "Partnership"
                          ]
                        },
                        "total_funding": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "latest_funding_stage": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "enum": [
                            "seed",
                            "angel",
                            "venture_round_unknown_series",
                            "series_a",
                            "series_b",
                            "series_c",
                            "series_d",
                            "series_e",
                            "series_f",
                            "series_g",
                            "series_h",
                            "series_i",
                            "series_j",
                            "debt",
                            "equity_crowdfunding",
                            "convertible_note",
                            "ico",
                            "private_equity",
                            "other"
                          ]
                        },
                        "latest_funding_date": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "format": "date"
                        },
                        "is_b2b": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "is_b2c": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "technologies": {
                          "type": [
                            "array",
                            "null"
                          ],
                          "items": {
                            "type": "string"
                          }
                        },
                        "department_headcount": {
                          "type": "object",
                          "additionalProperties": {
                            "type": "integer"
                          }
                        },
                        "job_function_headcount": {
                          "type": "object",
                          "additionalProperties": {
                            "type": "object",
                            "additionalProperties": {
                              "type": "integer"
                            }
                          }
                        },
                        "estimated_revenue": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "enum": [
                            "$0-$1M",
                            "$1M-$10M",
                            "$10M-$100M",
                            "$100M-$1B",
                            "$1B+"
                          ]
                        },
                        "revenue": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "id",
                        "object",
                        "linkedin_url"
                      ],
                      "additionalProperties": true
                    },
                    "linkedin_presence": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "`influencer` — Influencer (10,000+ followers), `micro_influencer` — Micro Influencer (5,000 - 9,999 followers), `large` — Large following (500 - 4,999 followers), `moderate` — Moderate following (100 - 499 followers), `limited` — Limited following (1 - 99 followers), `none` — No following (0 followers). All ranges are inclusive.",
                      "enum": [
                        "influencer",
                        "micro_influencer",
                        "large",
                        "moderate",
                        "limited",
                        "none"
                      ]
                    }
                  },
                  "required": [
                    "id",
                    "object",
                    "linkedin_url"
                  ],
                  "additionalProperties": true
                },
                "email": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "linkedin_url": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "company_domain": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "company_name": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "name": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "title": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "additionalProperties": true
            }
          },
          "_errors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "code": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "detail": {
                  "type": "string"
                },
                "source": {
                  "type": "object",
                  "properties": {
                    "pointer": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              },
              "required": [
                "code",
                "title",
                "detail"
              ],
              "additionalProperties": false
            }
          },
          "_links": {
            "type": "object",
            "properties": {
              "self": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              },
              "prev": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              },
              "next": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              }
            },
            "required": [
              "self"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "id",
          "object",
          "status",
          "results",
          "_links"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute amplemarket_post_people_enrichment_requests --payload '{
  "leads": "array"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

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