1. Agentic Tasks
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
        POST
      • (Agent) Task List
        POST
      • (Agent) Task Data
        POST
    • (Waterfall) Company Search
      • (Waterfall) Company Search
      • (Waterfall) Company Enrichment
    • (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. Agentic Tasks

(Agent) Task Creation

POST
{{baseUrl}}/api/agentic/search
Last modified:2026-07-16 18:26:01
Create an agent-mode lead-generation task (asynchronous). Integrates 100+ global data channels (customs, social media, trade shows, search engines, corporate contact databases, tenders/bids, yellow pages, maps, independent websites, etc.) and intelligently filters potential customers and partners based on company profiles. Searches typically complete in 1-2 hours. Call the task list API to retrieve the task execution status (whether the search is complete).

Request

Header Params

Body Params application/json

Example
{
  "keyword": "coffee roaster",
  "country": "USA",
  "cr": "countryUS",
  "lang": "English",
  "positioning": "1",
  "expandKeyWord": [
    "coffee machine"
  ],
  "secondKeyWord": [
    "OEM"
  ],
  "clientPortrait": "Medium-to-large coffee equipment buyers",
  "information": "Prioritize companies with import history",
  "hscode": "841981",
  "jobEnhanceSearch": "purchasing manager"
}

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/agentic/search' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
  "keyword": "coffee roaster",
  "country": "USA",
  "cr": "countryUS",
  "lang": "English",
  "positioning": "1",
  "expandKeyWord": [
    "coffee machine"
  ],
  "secondKeyWord": [
    "OEM"
  ],
  "clientPortrait": "Medium-to-large coffee equipment buyers",
  "information": "Prioritize companies with import history",
  "hscode": "841981",
  "jobEnhanceSearch": "purchasing manager"
}'

Responses

🟢201已创建
application/json
Bodyapplication/json

Example
{
  "code": 1,
  "message": "Task created successfully",
  "taskId": "641230a80434415d9c07d54db411cb5d",
  "serverTime": "2026-04-15 16:14:10",
  "meta": {
    "billing": {
      "credits_charged": 0,
      "agentic_note": "search only creates tasks; per-item charges are applied when subsequent list/task responses contain billable data, and charging is idempotent to prevent duplicate deductions; the list/task HTTP itself does not deduct credits per request."
    }
  }
}
🟠400请求有误
🟠401未认证
🟠402需要付款
🟠403权限不足
🟠409冲突
🟠429请求过多
Modified at 2026-07-16 18:26:01
Previous
Agentic Tasks
Next
(Agent) Task List
Built with