强大的 AI 增强搜索服务,智能聚合全网信息并生成摘要。 无需 API Key,无需注册,直接调用。
无需任何 API Key,无需注册账号,无隐藏费用。开放给所有开发者免费使用。
不仅返回搜索结果,还提供 AI 生成的摘要答案,直接回答你的问题。
只需一个 POST 请求,一个参数。RESTful 设计,JSON 响应,集成只需几分钟。
支持按时间范围(天/周/月/年)和精确日期过滤搜索结果,获取最新或特定时段的信息。
支持指定搜索深度、限定域名、排除域名、控制返回数量等精细化搜索选项。
支持通用搜索、新闻搜索和财经搜索三种模式,满足不同场景下的信息获取需求。
只需一个 HTTP 请求,即可获取 AI 增强的搜索结果
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| query | string | 必填 | 搜索关键词,1-400 个字符 |
| search_depth | string | 可选 | 搜索深度:basic / advanced(默认)/ fast / ultra-fast |
| topic | string | 可选 | 搜索主题:general(默认)/ news / finance |
| max_results | integer | 可选 | 最大返回结果数,范围 0-20,默认 5 |
| include_answer | boolean | 可选 | 是否返回 AI 摘要答案,默认 true |
| include_raw_content | boolean | 可选 | 是否返回网页原始内容,默认 false |
| include_images | boolean | 可选 | 是否执行图片搜索并包含在结果中,默认 false |
| include_image_descriptions | boolean | 可选 | 是否为图片添加描述(需 include_images 为 true),默认 false |
| include_favicon | boolean | 可选 | 是否返回每个结果的 favicon URL,默认 false |
| include_domains | string[] | 可选 | 限制搜索的域名列表(最多 300 个),如 ["github.com"] |
| exclude_domains | string[] | 可选 | 排除搜索的域名列表(最多 150 个) |
| time_range | string | 可选 | 按时间范围过滤:day / week / month / year |
| start_date | string | 可选 | 返回此日期之后的结果,格式 YYYY-MM-DD |
| end_date | string | 可选 | 返回此日期之前的结果,格式 YYYY-MM-DD |
| country | string | 可选 | 提升特定国家结果权重(仅 general 主题),如 us / cn |
| chunks_per_source | integer | 可选 | 每个来源的内容块数 (1-3),仅 advanced 深度可用 |
| auto_parameters | boolean | 可选 | 自动优化搜索参数,默认 false |
| exact_match | boolean | 可选 | 精确匹配搜索(需用引号包裹关键词),默认 false |
curl -X POST "https://searchfree.site/api/search" \
-H "Content-Type: application/json" \
-d '{
"query": "什么是量子计算",
"search_depth": "advanced",
"max_results": 5
}'
import requests
response = requests.post(
"https://searchfree.site/api/search",
json={
"query": "什么是量子计算",
"search_depth": "advanced",
"max_results": 5
}
)
data = response.json()
# AI 生成的摘要答案
print("答案:", data["answer"])
# 搜索结果列表
for result in data["results"]:
print(f"📄 {result['title']}")
print(f" {result['url']}")
print()
const response = await fetch("https://searchfree.site/api/search", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
query: "什么是量子计算",
search_depth: "advanced",
max_results: 5
})
});
const data = await response.json();
// AI 生成的摘要答案
console.log("答案:", data.answer);
// 搜索结果列表
data.results.forEach(result => {
console.log(`📄 ${result.title}`);
console.log(` ${result.url}`);
});
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
func main() {
body, _ := json.Marshal(map[string]interface{}{
"query": "什么是量子计算",
"search_depth": "advanced",
"max_results": 5,
})
resp, _ := http.Post(
"https://searchfree.site/api/search",
"application/json",
bytes.NewBuffer(body),
)
defer resp.Body.Close()
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
fmt.Printf("答案: %s\n", result["answer"])
}
{
"query": "什么是量子计算",
"answer": "量子计算是一种利用量子力学原理(如叠加和纠缠)来处理信息的新型计算方式...",
"follow_up_questions": [
"量子计算机和经典计算机有什么区别?",
"量子计算有哪些实际应用?"
],
"images": [
{
"url": "https://example.com/quantum.jpg",
"description": "量子计算示意图"
}
],
"results": [
{
"title": "量子计算 - 维基百科",
"url": "https://zh.wikipedia.org/wiki/量子计算",
"content": "量子计算是一种遵循量子力学规律调控量子信息单元进行计算的新型计算模式...",
"score": 0.98,
"favicon": "https://zh.wikipedia.org/favicon.ico"
}
],
"response_time": 1.234
}
用于检测 API 服务是否正常运行,可用于监控和负载均衡探活。
{
"status": "ok",
"keys_loaded": 3,
"rate_limit_enabled": true
}
输入搜索内容,实时体验 API 效果