Bing Organic Live Advanced
POST
/v3/serp/bing/organic/live/advanced实时获取 Bing 有机搜索结果。Bing 在部分海外市场(尤其美国)仍占约 30% 搜索份额,且与 Google 排名差异明显,适合多引擎 SEO 监控。
参考价:约 ¥0.0320 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keyword | string | 是 | 搜索关键词 |
| location_code | integer | 是 | 地理位置代码,如 2840(美国) |
| language_code | string | 是 | 语言代码 |
| device | string | 否 | desktop 或 mobile |
| depth | integer | 否 | 结果深度,默认 100 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/serp/bing/organic/live/advanced" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{
"keyword": "project management software",
"location_code": 2840,
"language_code": "en",
"device": "desktop"
}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/serp/bing/organic/live/advanced",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{
"keyword": "project management software",
"location_code": 2840,
"language_code": "en",
"device": "desktop",
}],
timeout=60,
)
items = resp.json()["tasks"][0]["result"][0]["items"]
organic = [i for i in items if i.get("type") == "organic"]
print("top 3:", [i["url"] for i in organic[:3]])TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/serp/bing/organic/live/advanced",
{
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{
keyword: "project management software",
location_code: 2840,
language_code: "en",
device: "desktop",
}]),
}
);
const data = await resp.json();
const organic = data.tasks[0].result[0].items.filter(
(i: { type?: string }) => i.type === "organic"
);
console.log(organic.slice(0, 3).map((i: { url: string }) => i.url));何时使用 Bing SERP
| 场景 | 建议 |
|---|---|
| 北美 B2B 站点 | 同时监控 Google + Bing |
| 中国市场 | 优先 Google + 百度(如有需要) |
| 仅国内流量 | Google Organic 通常足够 |