已集成Brave Search API?只需将基础URL指向Kelly Search,解析代码无需改动。
基于开放网络分布式节点索引的联合搜索 — 没有单一索引控制点。
重复查询由本地结果存储在毫秒级内响应。
搜索结果经过域名黑名单、关键词启发式和质量评分过滤后才到达您的应用。
最少日志记录、不追踪、不画像。我们存储查询和结果 — 而不是用户信息。
REST + JSON、单一认证头、合理的默认值。能调用HTTP端点,就能进行搜索。
使用订阅令牌请求头进行认证,在一分钟内发送您的第一个查询。
# 搜索网页
curl -H "X-Subscription-Token: $KELLY_API_KEY" \
"https://kelly-search.com/res/v1/web/search?q=best+coffee+in+berlin&count=5"
GET /res/v1/web/search
| 参数 | 类型 | 描述 |
|---|---|---|
q | string | 用户的搜索查询(必填) |
count | int | 结果数量,最多50(默认20) |
offset | int | 用于分页的基于零的偏移量 |
请求头: X-Subscription-Token: <your API key>
{
"query": { "original": "best coffee in berlin" },
"type": "search",
"web": {
"type": "results",
"results": [
{
"type": "search_result",
"title": "...",
"url": "https://example.com/article",
"description": "...",
"meta_url": { "scheme": "https", "hostname": "example.com" },
"profile": { "name": "example.com", "url": "https://example.com" }
}
]
}
}