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 Search

POST
{{baseUrl}}/api/people/search
Last modified:2026-07-16 18:31:38
Waterfall-mode contact search (real-time) integrates global data providers such as Apollo, Hunter, RocketReach, and Snovio to perform waterfall-style retrieval, offering two data return modes: First Match (single-source priority matching) and Aggregate (multi-source data aggregation), leveraging the strengths of multiple sources. Subsequently, using the returned name, domain, or LinkedIn URL, call the (waterfall) contact details API to obtain detailed contact information.

Request

Header Params

Body Params application/json

Example
{
  "page": 1,
  "per_page": 10,
  "waterfall": {
    "mode": "first_match",
    "source_order": [
      "apollo",
      "hunter",
      "rocketreach"
    ]
  },
  "company": {
    "domains": [
      "eastman.com"
    ],
    "technologies": [
      "salesforce"
    ],
    "employee_count_ranges": [
      {
        "min": 100,
        "max": 50000
      }
    ],
    "annual_revenue_ranges": [
      {
        "min": "100000"
      }
    ]
  },
  "job": {
    "job_titles": [
      "vp"
    ],
    "departments": [
      "sales"
    ],
    "seniorities": [
      "vp"
    ]
  },
  "company_locations": {
    "country_code": [
      "US"
    ],
    "state": [
      "California"
    ]
  },
  "person": {
    "first_name": "Jane",
    "last_name": "Doe"
  },
  "education": {
    "schools": [
      "Stanford University"
    ]
  },
  "contact_requirements": {
    "contact_email_status": [
      "verified",
      "likely_to_engage"
    ]
  }
}

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/search' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
  "page": 1,
  "per_page": 10,
  "waterfall": {
    "mode": "first_match",
    "source_order": [
      "apollo",
      "hunter",
      "rocketreach"
    ]
  },
  "company": {
    "domains": [
      "eastman.com"
    ],
    "technologies": [
      "salesforce"
    ],
    "employee_count_ranges": [
      {
        "min": 100,
        "max": 50000
      }
    ],
    "annual_revenue_ranges": [
      {
        "min": "100000"
      }
    ]
  },
  "job": {
    "job_titles": [
      "vp"
    ],
    "departments": [
      "sales"
    ],
    "seniorities": [
      "vp"
    ]
  },
  "company_locations": {
    "country_code": [
      "US"
    ],
    "state": [
      "California"
    ]
  },
  "person": {
    "first_name": "Jane",
    "last_name": "Doe"
  },
  "education": {
    "schools": [
      "Stanford University"
    ]
  },
  "contact_requirements": {
    "contact_email_status": [
      "verified",
      "likely_to_engage"
    ]
  }
}'

Responses

🟢200成功
application/json
Bodyapplication/json

Example
{
  "success": true,
  "request_id": "req_8OlGEbc92xIe",
  "meta": {
    "total_results": 0,
    "page": 1,
    "per_page": 10,
    "has_more": false,
    "post_filtered": false,
    "billing": {
      "credits_charged": 0,
      "byok_used": false,
      "platform_credits_charged": 0
    },
    "waterfall": {
      "mode": "first_match",
      "source_hit": null,
      "short_circuited": false,
      "sources_attempted": [
        "apollo",
        "hunter",
        "rocketreach"
      ],
      "sources_skipped": [
        {
          "source": "apollo",
          "reason": "no_match"
        },
        {
          "source": "hunter",
          "reason": "no_match"
        },
        {
          "source": "rocketreach",
          "reason": "no_match"
        }
      ],
      "latency_ms": 5663,
      "post_filter_removed": 0
    }
  },
  "people": [],
  "error": null
}
🟠400请求有误
🟠401未认证
🟠402需要付款
🟠403权限不足
🟠409冲突
🟠429请求过多
Modified at 2026-07-16 18:31:38
Previous
(Waterfall) People Search
Next
(Waterfall) Contact Enrichment
Built with