使用 ScamLens API 构建
将实时威胁检测集成到您的应用中。90 种情报源、AI 驱动分析和社区数据 — 通过简单的 REST API 即可使用。
90+
情报源
12
种语言
99.9%
可用性
快速开始
创建账号
几秒钟即可免费注册
生成 API Key
在控制面板一键创建密钥
开始构建
发送您的第一个 API 请求
# Check a domain
curl "https://api.scamlens.org/v1/public/check?domain=suspicious-site.xyz"
# With API key for higher limits
curl -H "X-API-Key: your-key" \
"https://api.scamlens.org/v1/public/check?domain=example.com"
# Batch check (Pro+)
curl -X POST "https://api.scamlens.org/v1/public/check/batch" \
-H "X-API-Key: your-key" \
-H "Content-Type: application/json" \
-d '{"domains": ["example.com", "suspicious.xyz"]}' 免费版端点无需认证即可使用。添加 API Key 可获得更高请求限额和高级功能。
API 端点
快速威胁检测
在用户访问、登录或付款前,实时完成网站风险核验。
{ "score": 85, "risk_level": "safe", "sources_checked": 90 } 完整情报分析
全面域名分析:WHOIS、DNS、SSL、威胁情报、注册数据。
{ "domain": "...", "threatSources": [...], "sslInfo": {...} } AI 风险摘要
AI 生成的风险评估,支持 12 种语言。
{ "risk_level": "high", "summary": "This domain shows signs of..." } 加密地址检测
分析加密地址,覆盖 6 条 EVM 链 + Bitcoin/Solana。
{ "address": "0x...", "risk": "medium", "labels": ["mixer"] } 批量检测
单次请求批量检测最多 50 个域名。
{ "results": [{ "domain": "...", "score": 85 }, ...] } 内容分析
分析可疑消息、邮件和聊天记录,整理出更清楚的风险信号。
{ "verdict": "scam", "confidence": 0.94, "indicators": [...] } 威胁情报源
按分页方式获取新标记的网站和链上风险记录。
{ "threats": [...], "total": 1234, "page": 1 } 企业级 B2B API
企业版统一的威胁检测端点,适用于企业集成。通过单一认证 API 检测域名、手机号、钱包地址和 IP。
/v1/api/check/domain 域名威胁检测
全面域名分析:信任评分、威胁情报源、WHOIS、DNS、SSL、AI 风险摘要。90+ 情报源。
/v1/api/check/phone 手机号情报查询
手机号风险评估:运营商信息、垃圾短信举报、欺诈概率、地理数据。
/v1/api/check/wallet 加密钱包风险检测
钱包地址分析,覆盖 8 条链:风险标签、交易模式、制裁筛查。
/v1/api/check/ip IP 风险检测
IP 信誉检查:地理位置、代理/VPN 检测、滥用举报、威胁评分。
认证方式
所有 B2B 端点需要通过 X-API-Key 请求头传递企业级 API 密钥。
X-API-Key: sk_enterprise_xxxxxxxxxxxxxxxx 代码示例
# Domain threat check
curl -X POST "https://api.scamlens.org/v1/api/check/domain" \
-H "X-API-Key: sk_enterprise_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"domain": "suspicious-site.xyz"}'
# Phone intelligence lookup
curl -X POST "https://api.scamlens.org/v1/api/check/phone" \
-H "X-API-Key: sk_enterprise_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"phone": "+1-555-0123", "country": "US"}'
# Crypto wallet risk check
curl -X POST "https://api.scamlens.org/v1/api/check/wallet" \
-H "X-API-Key: sk_enterprise_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD18", "chain": "ethereum"}'
# IP risk check
curl -X POST "https://api.scamlens.org/v1/api/check/ip" \
-H "X-API-Key: sk_enterprise_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"ip": "203.0.113.42"}' 响应格式
{
"success": true,
"data": {
"domain": "suspicious-site.xyz",
"trust_score": 23,
"risk_level": "high",
"threats": [
{ "source": "Google Safe Browsing", "type": "phishing", "confidence": 0.95 },
{ "source": "VirusTotal", "type": "malware", "confidence": 0.87 }
],
"whois": { "registrar": "...", "created": "2024-01-15", "expires": "2025-01-15" },
"ai_summary": "This domain shows strong indicators of phishing...",
"sources_checked": 90,
"checked_at": "2026-03-29T10:30:00Z"
}
} 请求限额与配额
选择适合您集成需求的方案。
| 功能 | 免费版 | 入门版 | 专业版 | 企业版 |
|---|---|---|---|---|
| 月请求量 | 500 | 3,000 | 10,000 | 无限 |
| 速率限制 | 10/分钟 | 30/分钟 | 60/分钟 | 300/分钟 |
| 每日查询 | 10 | 50 | 200 | 无限 |
| 批量检测 | — | — | 50 个域名 | 100 个域名 |
| 完整情报 | — | |||
| AI 摘要 | — | |||
| Webhooks | — | — | ||
| SLA | — | — | — | 99.9% |
简单透明的定价
免费开始,按需扩展,无隐藏费用。
准备好集成了吗?
开始使用 ScamLens API 构建所需的一切。