1. 企业/联系人接口(瀑布流/智能体模式)
信风TradeWind AI API接口文档2.0
  • 信风TradeWind AI API 2.0
    • 企业/联系人接口(瀑布流/智能体模式)
      • (智能体)国家与语言编码参考(无需鉴权)
        GET
      • (智能体)任务创建
        POST
      • (智能体)任务列表
        POST
      • (智能体)任务数据
        POST
      • (瀑布流)企业搜索
        POST
      • (瀑布流)获取合法industry
        GET
      • (瀑布流)获取合法technologies
        GET
      • (瀑布流)企业详情
        POST
      • (瀑布流)联系人搜索
        POST
      • (瀑布流)联系人详情
        POST
      • (邮箱验证)单一邮箱查询
        POST
      • (邮箱验证)批量任务创建
        POST
      • (邮箱验证)批量任务结果查询
        POST
    • 海关数据接口
      • (海关)国家参考
      • 获取海关数据列表
      • 获取海关公司列表
      • 获取海关公司状态
      • 获取海关采购趋势
      • 获取海关全球区域分布图
      • 获取海关中国供应商交易
      • 获取海关商家交易
      • 获取海关商家交易(新)
      • 获取海关公司详情
      • 获取海关公司贸易趋势
      • 获取海关公司进出口记录
      • 获取海关公司贸易伙伴记录
      • 获取海关公司HS编码记录
      • 获取海关公司采供产品列表
      • 获取海关公司贸易区域
      • 获取海关公司贸易港口统计
      • (海关)智能搜邮(旧)
      • 匹配公司名称的企业列表
      • 匹配公司的联系人列表
    • API监控接口(无需鉴权)
      • GET API存活探针
      • GET API运维指标
  1. 企业/联系人接口(瀑布流/智能体模式)

(瀑布流)企业搜索

POST
/api/company/search
瀑布流模式企业搜索(实时),整合Apollo, Hunter, RocketReach, Google Map, Storelead等全球知名数据渠道,进行瀑布流式检索,提供First Match (单源优先匹配) 及 Aggregate (多源数据聚合)两种数据返回模式,博采众长。后续可通过企业名或域名结果,调用(瀑布流)企业详情接口获取企业详细信息。

请求参数

Header 参数

Body 参数application/json

示例
{
  "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
      }
    ]
  }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/api/company/search' \
--header 'Authorization: Bearer {{apiKey}}' \
--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
      }
    ]
  }
}'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
  "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请求过多
修改于 2026-04-22 10:48:15
上一页
(智能体)任务数据
下一页
(瀑布流)获取合法industry
Built with