使用快捷键快速访问平台功能
了解如何使用搜索功能和积分系统
使用 attack_types=类型名称 进行搜索,例如:attack_types=SQL注入
免费版每日赠送 50 积分,付费版每日赠送 100 积分,当天剩余不累计
付费充值获得,累计扣除,不重置
注意:快捷键仅在不在输入框中时生效
⚠️ 重要:请立即复制并妥善保管 API Key,创建后无法再次查看完整密钥
API Key 需要在 HTTP 请求的 Authorization 请求头中传递
curl -X GET "https://trap.biu.life/api/logs/search?q=method%3DPOST&page=1&page_size=10&t=1d" \
-H "Authorization: sk_your_api_key_here"curl -X POST "https://trap.biu.life/api/logs/search" \
-H "Authorization: sk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{"q": "method=POST", "page": 1, "page_size": 10, "t": "1d"}'import requests
headers = {
"Authorization": "sk_your_api_key_here"
}
params = {
"q": "method=POST",
"page": 1,
"page_size": 10,
"t": "1d"
}
response = requests.get(
"https://trap.biu.life/api/logs/search",
headers=headers,
params=params
)
print(response.json())import requests
import json
headers = {
"Authorization": "sk_your_api_key_here",
"Content-Type": "application/json"
}
data = {
"q": "method=POST",
"page": 1,
"page_size": 10,
"t": "1d"
}
response = requests.post(
"https://trap.biu.life/api/logs/search",
headers=headers,
json=data
)
print(response.json())const url = new URL("https://trap.biu.life/api/logs/search");
url.searchParams.set("q", "method=POST");
url.searchParams.set("page", "1");
url.searchParams.set("page_size", "10");
url.searchParams.set("t", "1d");
const response = await fetch(url, {
method: "GET",
headers: {
"Authorization": "sk_your_api_key_here"
}
});
const data = await response.json();
console.log(data);const response = await fetch("https://trap.biu.life/api/logs/search", {
method: "POST",
headers: {
"Authorization": "sk_your_api_key_here",
"Content-Type": "application/json"
},
body: JSON.stringify({
q: "method=POST",
page: 1,
page_size: 10,
t: "1d"
})
});
const data = await response.json();
console.log(data);使用 API Key 认证的请求不会消耗积分,这是 API Key 认证的特殊优势
• 使用精确的搜索条件可以减少结果数量,提高搜索效率
• 合理使用免费积分,优先完成重要查询
• 如需更多积分,可以通过充值获得权益积分
• 查看积分详情和记录,请前往个人资料页面