SeerMarTech 文档控制台

外链查询 Live

POST/v3/backlinks/backlinks/live

获取指向目标域名或 URL 的反向链接列表,含来源页、锚文本、链接类型(dofollow/nofollow)、首次发现时间等。

参考价:¥0.3200 / 次(实际以请求返回为准)

实际费用 = 基础费 + 按返回行数计费,以响应 cost 为准。

请求体

参数类型必填说明
targetstring目标域名或 URL,如 example.com 或 https://example.com/page
limitinteger返回外链条数,默认 100
modestringas_is / one_per_domain / new / lost
filtersarray过滤条件,如 dofollow、domain_rank 范围
order_byarray排序字段,如 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来源域权重

业务场景