🔎 Go Link Tracer Pro

批量解析 / 风险评分 / UTM污染分析 / 跳转链路情报

单链接追踪

准备就绪

批量追踪(最多20条)

跳转链路

#URL状态Location耗时
暂无
📘 API 使用教程(傻瓜式,点我展开)
不会写代码也能照抄。按步骤来就行。

第 1 步:确认接口活着

curl -s https://go.wuhai.eu.org/api/health
看到 {"ok":true} 就代表服务正常。

第 2 步:单条链接分析(最常用)

curl -s https://go.wuhai.eu.org/api/trace \
  -H 'Content-Type: application/json' \
  -d '{"url":"https://example.com"}'
https://example.com 换成你要查的链接。

第 3 步:看结果重点(只看这3个字段)

第 4 步:批量分析(一次最多20条)

curl -s https://go.wuhai.eu.org/api/trace/batch \
  -H 'Content-Type: application/json' \
  -d '{"urls":["https://example.com","https://t.co"]}'

常见报错怎么处理

一句话版本:先 health,再 trace,最后看 finalUrl + riskScore + affDetected。