people_enrichment
Enrich personal contact data by providing names, email, company domain, or LinkedIn URL to retrieve comprehensive professional information from Apollo.io.
Instructions
Use the People Enrichment endpoint to enrich data for 1 person
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first_name | No | Person's first name | |
| last_name | No | Person's last name | |
| No | Person's email address | ||
| domain | No | Company domain | |
| organization_name | No | Organization name | |
| linkedin_url | No | Person's LinkedIn profile URL |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Company domain",
"type": "string"
},
"email": {
"description": "Person's email address",
"type": "string"
},
"first_name": {
"description": "Person's first name",
"type": "string"
},
"last_name": {
"description": "Person's last name",
"type": "string"
},
"linkedin_url": {
"description": "Person's LinkedIn profile URL",
"type": "string"
},
"organization_name": {
"description": "Organization name",
"type": "string"
}
},
"type": "object"
}