1. (Waterfall) People Search
TradeWind AI API 2.0 Documentation
🇺🇸 English
  • 🇨🇳 简体中文
  • 🇺🇸 English
  • TradeWind AI API 2.0
    • Reference
      • (Agent) Country and Language Codes Reference (No authentication required)
      • (Waterfall) Retrieve Industry references
      • (Waterfall) Retrieve Technology technical references
    • Agentic Tasks
      • (Agent) Task Creation
      • (Agent) Task List
      • (Agent) Task Data
    • (Waterfall) Company Search
      • (Waterfall) Company Search
      • (Waterfall) Company Enrichment
    • (Waterfall) People Search
      • (Waterfall) Contact Search
        POST
      • (Waterfall) Contact Enrichment
        POST
    • Email Verificatioin
      • Batch Task Result Query (Email Verification)
    • Customs Record Search
      • (Customs) Country Reference
      • Retrieve customs data list
      • Retrieve list of customs companies
      • Retrieve a company's customs status
      • Retrieve customs company details
      • Retrieve customs company trade trends
      • Retrieve a company's customs import and export records
      • Retrieve customs trade partner records for a company
      • Retrieve customs HS code records for companies
      • Retrieve list of products purchased or supplied by a customs company
      • Retrieve trade regions for a customs company
      • Retrieve statistics for customs, companies, and trade ports
      • (Customs) Intelligent Mail Search (Legacy)
      • List of companies matching the company name
      • List of contacts matched to the company
      • Retrieve customs procurement trends
      • Retrieve global customs regional distribution map
      • Retrieve customs transactions for Chinese suppliers
      • Retrieve customs merchant transactions
      • Retrieve Customs Merchant Transactions (New)
    • Health
      • GET API liveness probe
    • Metrics
      • GET API Operational Metrics
  1. (Waterfall) People Search

(Waterfall) Contact Enrichment

POST
{{baseUrl}}/api/people/enrich
Last modified:2026-07-16 18:32:30
Real-time contact detail search in waterfall mode, integrating global data sources such as Apollo, Hunter, Snovio, and RocketReach. Performs waterfall-style retrieval and offers two response modes: First Match (single-source priority matching) and Aggregate (multi-source data aggregation), leveraging the strengths of multiple providers.

Request

Header Params

Body Params application/json

Example
{
  "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>"
    }
  }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff '{{baseUrl}}/api/people/enrich' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
  "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>"
    }
  }
}'

Responses

🟢200成功
application/json
Bodyapplication/json

Example
{
  "success": true,
  "status": "completed",
  "request_id": "req_xxx",
  "person": {
    "first_name": "Jane",
    "last_name": "Doe",
    "current_title": "Engineer",
    "company_name": "Example Inc",
    "company_domain": "example.com",
    "company_website": "https://www.example.com",
    "company_linkedin_url": null,
    "location": {
      "city": "San Francisco",
      "country": "United States",
      "country_code": "US"
    },
    "emails": [
      {
        "email": "jane.doe@example.com",
        "type": "work",
        "status": "valid",
        "sources": [
          "apollo"
        ],
        "confidence": null
      }
    ],
    "phones": [
      {
        "number": "+1 415 555 0100",
        "type": "work"
      }
    ],
    "social_links": {
      "linkedin_url": "https://www.linkedin.com/in/janedoe"
    },
    "employment_history": [
      {
        "company_name": "Example Inc",
        "title": "Engineer",
        "start_date": "2020-01",
        "end_date": null,
        "is_current": true,
        "company_linkedin_url": null,
        "department": null,
        "description": null,
        "company_city": "San Francisco",
        "company_country_code": "US"
      }
    ],
    "education": [
      {
        "school": "Stanford University",
        "degree": "BS",
        "major": "Computer Science",
        "start": 2012,
        "end": 2016
      }
    ]
  },
  "meta": {
    "field_sources": {
      "first_name": "request",
      "last_name": "request",
      "company_domain": "request",
      "company_name": "request",
      "social_links": "request",
      "emails": "apollo",
      "phones": "rocketreach",
      "employment_history": "apollo",
      "education": "rocketreach",
      "location": "rocketreach"
    },
    "billing": {
      "total_credits_charged": 4,
      "platform_credits_charged": 4,
      "byok_used": false,
      "breakdown": [
        {
          "source": "apollo",
          "credits": 2
        },
        {
          "source": "rocketreach",
          "credits": 2
        }
      ]
    },
    "waterfall": {
      "mode": "first_match",
      "all_fields_filled": true,
      "total_latency_ms": 920,
      "async_pending": false,
      "sources_attempted": [
        "apollo",
        "rocketreach"
      ],
      "sources_skipped": []
    }
  }
}
🟠400请求有误
🟠401未认证
🟠402需要付款
🟠403权限不足
🟠409冲突
🟠429请求过多
Modified at 2026-07-16 18:32:30
Previous
(Waterfall) Contact Search
Next
Email Verificatioin
Built with