内容搜索 Live
POST
/v3/content_analysis/search/live按品牌名或关键词搜索网络上的引用内容,返回 URL、标题、摘要、发布日期等。
参考价:约 ¥0.3200 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keyword | string | 是 | 品牌名或搜索词 |
| search_mode | string | 否 | as_is / broad |
| page_type | array | 否 | 页面类型过滤 |
| limit | integer | 否 | 返回数量 |
| offset_token | string | 否 | 分页 token |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/content_analysis/search/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{"keyword": "SeerMarTech", "search_mode": "as_is", "limit": 50}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/content_analysis/search/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{"keyword": "SeerMarTech", "search_mode": "as_is", "limit": 50}],
timeout=60,
)
for item in resp.json()["tasks"][0]["result"][0]["items"][:5]:
print(item.get("url"), item.get("title"))TypeScript
const resp = await fetch("https://api.seermartech.cn/v3/content_analysis/search/live", {
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{ keyword: "SeerMarTech", search_mode: "as_is", limit: 50 }]),
});
console.log((await resp.json()).tasks[0].result[0].items.slice(0, 5));业务场景
- 品牌 PR 监控:追踪媒体报道与博客引用
- 竞品内容策略分析