PeopleEnrichService)。当前仅读取 identity 与 waterfall(含 byok)。| 字段 | 说明 |
|---|---|
identity | email、first_name、last_name、domain、company_name、linkedin 等(至少部分线索) |
waterfall | mode、source_order |
{
"identity": {
"first_name": "Jan",
"last_name": "Shumate",
"domain": "eastman.com"
},
"waterfall": {
"mode": "first_match",
"source_order": [
"hunter",
"snov",
"apollo",
"rocketreach"
],
"byok": {
"apollo_api_key": "<YOUR_APOLLO_KEY>",
"hunter_api_key": "<YOUR_HUNTER_KEY>",
"rocketreach_api_key": "<YOUR_ROCKETREACH_KEY>",
"snov_client_id": "<YOUR_SNOV_CLIENT_ID>",
"snov_client_secret": "<YOUR_SNOV_CLIENT_SECRET>"
}
}
}curl --location --request POST '/api/people/enrich' \
--header 'Authorization: Bearer {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"identity": {
"first_name": "Jan",
"last_name": "Shumate",
"domain": "eastman.com"
},
"waterfall": {
"mode": "first_match",
"source_order": [
"hunter",
"snov",
"apollo",
"rocketreach"
],
"byok": {
"apollo_api_key": "<YOUR_APOLLO_KEY>",
"hunter_api_key": "<YOUR_HUNTER_KEY>",
"rocketreach_api_key": "<YOUR_ROCKETREACH_KEY>",
"snov_client_id": "<YOUR_SNOV_CLIENT_ID>",
"snov_client_secret": "<YOUR_SNOV_CLIENT_SECRET>"
}
}
}'{
"success": true,
"status": "completed",
"request_id": "req_xxx",
"person": {
"emails": []
},
"meta": {
"field_sources": {},
"billing": {},
"waterfall": {}
}
}