免费获取 AI Hub 工具数据库,构建你自己的 AI 应用。
RESTful API,JSON 响应,无需注册,开箱即用。
https://ai999999.top/api/tools获取工具列表
返回工具列表数组,包含 id、name、slug、description、websiteUrl、pricingType、category 等字段。
GET /api/tools?page=1&limit=10&category=text-ai
{
"data": [
{
"id": 1,
"name": "ChatGPT",
"slug": "chatgpt",
"pricingType": "FREEMIUM",
"category": { "name": "文本生成", "slug": "text-ai" }
}
],
"total": 500,
"page": 1
}/api/tools/:slug获取工具详情
返回单个工具的完整信息,包含描述、标签、功能特性、官网链接等全量字段。
GET /api/tools/chatgpt
{
"id": 1,
"name": "ChatGPT",
"slug": "chatgpt",
"description": "OpenAI 旗下对话式 AI...",
"websiteUrl": "https://chat.openai.com",
"tags": ["对话", "写作", "编程"],
"upvotes": 1024,
"viewCount": 99999
}/api/categories获取所有分类
返回所有工具分类列表,包含 id、name、slug、description、icon 及工具数量统计。
GET /api/categories
[
{
"id": 1,
"name": "文本生成",
"slug": "text-ai",
"icon": "✍️",
"_count": { "tools": 128 }
}
]/api/news获取 AI 资讯列表
返回最新 AI 资讯列表,包含标题、摘要、来源、发布时间等字段,按发布时间倒序排列。
GET /api/news?limit=5
{
"data": [
{
"id": 1,
"title": "GPT-5 正式发布...",
"slug": "gpt-5-release",
"summary": "...",
"sourceUrl": "https://...",
"publishedAt": "2026-04-15T08:00:00Z"
}
]
}const res = await fetch(
'https://ai999999.top/api/tools?limit=10'
)
const { data } = await res.json()
console.log(data)import requests
r = requests.get(
'https://ai999999.top/api/tools',
params={'limit': 10}
)
data = r.json()['data']
print(data)⚠ 当前 API 为公测版本,接口结构可能调整。建议关注 GitHub 了解更新。 如果 API 对你有帮助,欢迎在 GitHub 上给项目点个 Star ⭐