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

(瀑布流)企业搜索

POST
/api/company/search
公司搜索(CompanySearchService + parseCompanySearchAdvanced)。
顶层字段说明
page / per_page分页;服务端规范化
waterfallmode、source_order、byok(自备密钥,见实现)
companynames、domains、keywords(仅 include)、description_query 等
industry仅 include;亦可简写顶层 industry: string[] / 单字符串
technologiesinclude / exclude(Hunter 仍用 exclude;Apollo 仅 include)
locationcountry_code、cities、states、regions、countries
sizeemployee_ranges、revenue_ranges、funding_ranges
fundingamount_min、amount_max
similar_todomain 或 name
ecommerceStoreLead 电商筛选
local_searchGoogle Maps
responseinclude_provider_raw

请求参数

Header 参数

Body 参数application/json

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

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/company/search' \
--header 'Authorization: Bearer {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
  "page": 1,
  "per_page": 10,
  "waterfall": {
    "mode": "first_match",
    "source_order": [
      "apollo",
      "hunter",
      "rocketreach",
      "map",
      "storelead"
    ]
  },
  "company": {
    "names": [
      "Acme"
    ],
    "domains": [
      "stripe.com"
    ],
    "keywords": {
      "include": [
        "fintech"
      ]
    }
  },
  "industry": {
    "include": [
      "Computer Software"
    ]
  },
  "technologies": {
    "include": [
      "react"
    ],
    "exclude": [
      "wordpress"
    ]
  },
  "location": {
    "country_code": [
      "US"
    ],
    "cities": [
      "San Francisco"
    ],
    "states": [
      "California"
    ]
  },
  "size": {
    "employee_ranges": [
      {
        "min": 51,
        "max": 200
      }
    ]
  }
}'

返回响应

🟢200成功
application/json
Body

示例
{
  "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-15 12:42:33
上一页
(智能体)任务数据
下一页
(瀑布流)企业详情
Built with