1. (Waterfall) Company 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
        POST
      • (Waterfall) Company Enrichment
        POST
    • (Waterfall) People Search
      • (Waterfall) Contact Search
      • (Waterfall) Contact Enrichment
    • 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) Company Search

(Waterfall) Company Search

POST
{{baseUrl}}/api/company/search
Last modified:2026-07-16 18:30:38
Waterfall-mode company search (real-time), integrating global data sources such as Apollo, Hunter, RocketReach, Google Map, and Storelead, performs waterfall-style retrieval and offers two return modes: First Match (single-source priority matching) and Aggregate (multi-source data aggregation), leveraging the strengths of multiple sources. Subsequent results (company name or domain) can be used to call the (waterfall) company details API to obtain detailed company information.

Request

Header Params

Body Params application/json

Example
{
  "page": 1,
  "per_page": 10,
  "waterfall": {
    "mode": "first_match",
    "source_order": [
      "hunter",
      "apollo",
      "rocketreach",
      "map",
      "storelead"
    ]
  },
  "company": {
    "domains": [
      "stripe.com"
    ],
    "keywords": {
      "include": [
        "fintech"
      ]
    }
  },
  "industry": {
    "include": [
      "Computer Software"
    ]
  },
  "technologies": {
    "include": [
      "react"
    ]
  },
  "location": {
    "country_code": [
      "US"
    ],
    "cities": [
      "San Francisco"
    ],
    "states": [
      "California"
    ]
  },
  "size": {
    "employee_ranges": [
      {
        "min": 51,
        "max": 10000
      }
    ]
  }
}

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/company/search' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
  "page": 1,
  "per_page": 10,
  "waterfall": {
    "mode": "first_match",
    "source_order": [
      "hunter",
      "apollo",
      "rocketreach",
      "map",
      "storelead"
    ]
  },
  "company": {
    "domains": [
      "stripe.com"
    ],
    "keywords": {
      "include": [
        "fintech"
      ]
    }
  },
  "industry": {
    "include": [
      "Computer Software"
    ]
  },
  "technologies": {
    "include": [
      "react"
    ]
  },
  "location": {
    "country_code": [
      "US"
    ],
    "cities": [
      "San Francisco"
    ],
    "states": [
      "California"
    ]
  },
  "size": {
    "employee_ranges": [
      {
        "min": 51,
        "max": 10000
      }
    ]
  }
}'

Responses

🟢200成功
application/json
Bodyapplication/json

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