Listing 批量筛查 · batch-screen
POST /v1/batch-screen
批量筛查产品标题中夹带的商标:逐条提取品牌词、过滤通用词,给出撞标风险与冲突项。
- 消耗:1 点 / 条(按 items 条数)
- 可用档位:专业版 +
请求参数
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
items | array | 是 | 待筛查条目数组 |
items[].title | string | 是 | Listing 标题 / 文本 |
items[].nice | string | 否 | 该条尼斯分类(可选) |
请求示例
- cURL
- Python
curl -X POST "https://radarsea.com/v1/v1/batch-screen" \
-H "Authorization: Bearer one1_live_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"items":[{"title":"Nike Running Shoes","nice":"25"}]}'
import requests
r = requests.post(
"https://radarsea.com/v1/v1/batch-screen",
json={"items": [{"title": "Nike Running Shoes", "nice": "25"}]},
headers={"Authorization": "Bearer one1_live_xxxxxxxx"},
)
print(r.json())
响应示例
{
"results": [
{ "name": "Nike Running Shoes", "risk": "高", "tro_hit": false, "top_conflict": "NIKE" }
],
"count": 1,
"data_as_of": "2026-07-14"
}
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
results[].name | string | 原始标题 |
results[].risk | string | 风险等级(高/中/低) |
results[].tro_hit | bool | 是否命中维权高危(布尔) |
results[].top_conflict | string | 最相关冲突商标 |
count | int | 条数 |
data_as_of | string | 数据批次日期 |