外链查询 Live
POST
/v3/backlinks/backlinks/live获取指向目标域名或 URL 的反向链接列表,含来源页、锚文本、链接类型(dofollow/nofollow)、首次发现时间等。
参考价:约 ¥0.3200 / 次(实际以请求返回为准)
实际费用 = 基础费 + 按返回行数计费,以响应
cost为准。
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| target | string | 是 | 目标域名或 URL,如 example.com 或 https://example.com/page |
| limit | integer | 否 | 返回外链条数,默认 100 |
| mode | string | 否 | as_is / one_per_domain / new / lost |
| filters | array | 否 | 过滤条件,如 dofollow、domain_rank 范围 |
| order_by | array | 否 | 排序字段,如 domain_rank:desc |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/backlinks/backlinks/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{
"target": "example.com",
"limit": 50,
"mode": "as_is",
"order_by": ["domain_rank,desc"]
}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/backlinks/backlinks/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{
"target": "example.com",
"limit": 50,
"mode": "as_is",
"order_by": ["domain_rank,desc"],
}],
timeout=120,
)
for bl in resp.json()["tasks"][0]["result"][0]["items"][:5]:
print(bl.get("domain_from"), bl.get("anchor"), bl.get("dofollow"))TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/backlinks/backlinks/live",
{
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{
target: "example.com",
limit: 50,
mode: "as_is",
order_by: ["domain_rank,desc"],
}]),
}
);
const data = await resp.json();
console.log(data.tasks[0].result[0].items.slice(0, 5));响应字段(常用)
| 字段 | 说明 |
|---|---|
domain_from | 来源域名 |
url_from | 来源页 URL |
url_to | 目标 URL |
anchor | 锚文本 |
dofollow | 是否 dofollow |
domain_from_rank | 来源域权重 |
业务场景
- 审计新获取的外链是否已生效
- 排查疑似垃圾链接来源
- 竞品高权重外链 reverse engineering