AI Insight API
程序化访问 AI 资讯、研报、视频、公司和融资数据。面向开发者和 AI Agent。
🤖
AI Agent?把这段话发给你的 Agent
请先阅读 https://www.ai-insight.org/api/v1/how-to-use.md 学习 AI Insight API 的用法。
帮我看看今天 AI 领域有什么新闻,按分类整理一下。
适用于 Claude Code / Codex / OpenClaw / Kimi-CLI / Qwen-CLI 等 AI 编码助手。AI 会自动读取文档、理解接口并调用 API。
更多你可以直接发给 AI 的指令
搜一下最近关于 Claude 的新闻,给我最新的 5 条。
AI Insight 上有哪些深度研报?给我推荐几篇值得看的。
帮我查一下最近一周 AI 领域的产品发布类新闻。
帮我分析一下 2026 年 AI 融资趋势,画个月度趋势图。
3 月份有哪些 AI 相关的新闻?帮我写一份月度简报。
Base URL
https://www.ai-insight.org/api/v1
所有响应均为 JSON 格式,遵循统一的 envelope 结构:
{
"ok": true,
"data": [...],
"pagination": {
"page": 1,
"per_page": 20,
"total": 100,
"total_pages": 5
},
"meta": {
"request_id": "req_a1b2c3d4e5f6"
}
}
部分端点(/companies、/funding、/search)使用 has_more 替代 total/total_pages:
{
"pagination": {
"page": 1,
"per_page": 20,
"has_more": true
}
}
建议优先检查 has_more 字段;如不存在,再用 total_pages 判断是否有下一页。
认证
通过 HTTP Header 传递 API Key:
Authorization: Bearer sk-ai-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
X-API-Key: sk-ai-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
部分端点标记为 Optional,无 Key 时也可访问(受 IP 限流)。标记为 Required 的端点必须提供有效 Key。
获取 API Key:登录后访问 个人中心 → API Keys,每个账户最多创建 5 个 Key。
速率限制
| Tier | 每分钟 | 每月 |
| Free | 10 | 100 |
| Developer | 60 | 5,000 |
| Business | 300 | 100,000 |
无 Key 的匿名请求按 IP 限流,每分钟 10 次。
当超过限额时,API 返回 429 状态码。成功响应的 meta 字段可能包含 remaining_calls,指示当月剩余调用额度。
资讯 News
获取资讯列表,支持按时段、分类、来源、日期范围筛选。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
period | string | 否 | daily / weekly / monthly |
category | string | 否 | 分类筛选 |
source | string | 否 | 来源筛选(@username 格式) |
from | string | 否 | 起始日期 YYYY-MM-DD |
to | string | 否 | 结束日期 YYYY-MM-DD |
curl "https://www.ai-insight.org/api/v1/news?per_page=2"
curl "https://www.ai-insight.org/api/v1/news?period=weekly&category=大模型"
响应示例:
{
"ok": true,
"data": [
{
"id": 10908,
"title": "Replit:Agent 4 直播演示,现场构建跨平台实时聊天应用",
"summary": "Replit 直播演示 Agent 4 功能,从新的 Agent Canvas 出发...",
"source": "@Replit",
"url": "https://x.com/Replit/status/2032111573326815481",
"date": "2026-03-12",
"category": "产品发布",
"image_url": "https://pbs.twimg.com/media/HDOCJdlbQAg4Ak2.png"
}
],
"pagination": { "page": 1, "per_page": 2, "total": 1099, "total_pages": 550 }
}
获取单条资讯详情。
| 参数 | 类型 | 必填 | 说明 |
id | integer | 是 | 资讯 ID(路径参数) |
curl https://www.ai-insight.org/api/v1/news/10042
关键词搜索资讯(标题 + 摘要全文检索)。
| 参数 | 类型 | 必填 | 说明 |
q | string | 是 | 搜索关键词 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
curl -H "Authorization: Bearer sk-ai-xxx" \
"https://www.ai-insight.org/api/v1/news/search?q=Claude"
研报 Reports
获取编辑精选研报列表(静态数据)。注意:投资研报需要 Key,自定义研报(用户付费定制)不对外开放(返回 403)。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
category | string | 否 | 分类筛选 |
curl "https://www.ai-insight.org/api/v1/reports?per_page=2"
响应示例:
{
"ok": true,
"data": [
{
"id": "openclaw-latest-2026",
"title": "OpenClaw 三月全景:300K Star、Context Engine 与 NemoClaw 挑战者",
"category": "开源生态",
"date": "2026.03.11",
"url": "/reports/openclaw-latest-2026",
"featured": true
},
{
"id": "fb-moltbook-acquisition",
"title": "Meta 收购 Moltbook:Agent 社交网络的终局还是起点?",
"category": "热点解读",
"date": "2026.03.10",
"url": "/reports/fb-moltbook-acquisition",
"featured": true
}
],
"pagination": { "page": 1, "per_page": 2, "total": 74, "total_pages": 37 }
}
获取投资研报列表(数据库数据)。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
sector | string | 否 | 赛道筛选 |
category | string | 否 | 分类筛选 |
from | string | 否 | 起始日期 YYYY-MM-DD |
to | string | 否 | 结束日期 YYYY-MM-DD |
curl -H "Authorization: Bearer sk-ai-xxx" \
"https://www.ai-insight.org/api/v1/reports/invest?sector=大模型"
获取单篇投资研报详情。
| 参数 | 类型 | 必填 | 说明 |
slug | string | 是 | 研报 slug(路径参数) |
curl -H "Authorization: Bearer sk-ai-xxx" \
https://www.ai-insight.org/api/v1/reports/invest/deepseek-v4-analysis
视频 Videos
获取播客/访谈视频列表。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
category | string | 否 | 分类筛选 |
speaker | string | 否 | 演讲者筛选 |
curl "https://www.ai-insight.org/api/v1/videos?per_page=2"
响应示例:
{
"ok": true,
"data": [
{
"id": 2,
"youtube_id": "4uzGDAoNOZc",
"title": "OpenClaw 创造者:为什么 80% 的 App 将会消失",
"speaker": "Peter Steinberger",
"duration": "22:36",
"date": "2026-02-07",
"category": "YC 访谈",
"slug": "openclaw-creator"
}
],
"pagination": { "page": 1, "per_page": 2, "total": 66, "total_pages": 33 }
}
获取单个视频详情。
| 参数 | 类型 | 必填 | 说明 |
slug | string | 是 | 视频 slug(路径参数) |
curl https://www.ai-insight.org/api/v1/videos/dwarkesh-ilya-sutskever
公司 Companies
获取 AI 公司列表,支持按赛道和阶段筛选。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 50,上限 100 |
sector | string | 否 | 赛道筛选 |
stage | string | 否 | 阶段筛选 |
curl -H "Authorization: Bearer sk-ai-xxx" \
"https://www.ai-insight.org/api/v1/companies?sector=大模型"
此端点使用 has_more 分页(无 total 字段)。
获取公司详情,包含融资轮次记录。
| 参数 | 类型 | 必填 | 说明 |
slug | string | 是 | 公司 slug(路径参数) |
curl -H "Authorization: Bearer sk-ai-xxx" \
https://www.ai-insight.org/api/v1/companies/openai
响应的 data 包含公司基本信息和 funding_rounds 数组。
获取该公司所在赛道的竞争格局数据。
| 参数 | 类型 | 必填 | 说明 |
slug | string | 是 | 公司 slug(路径参数) |
curl -H "Authorization: Bearer sk-ai-xxx" \
https://www.ai-insight.org/api/v1/companies/anthropic/landscape
融资 Funding
获取融资记录列表,支持按公司、轮次、日期筛选。
| 参数 | 类型 | 必填 | 说明 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
company | string | 否 | 公司 slug 筛选 |
round | string | 否 | 轮次筛选(如 Series A) |
from | string | 否 | 起始日期 YYYY-MM-DD |
to | string | 否 | 结束日期 YYYY-MM-DD |
curl -H "Authorization: Bearer sk-ai-xxx" \
"https://www.ai-insight.org/api/v1/funding?round=Series+A&from=2026-01-01"
使用 has_more 分页。
获取融资统计数据(按赛道汇总)。
| 参数 | 类型 | 必填 | 说明 |
sector | string | 否 | 赛道筛选(为空返回全部赛道统计) |
curl -H "Authorization: Bearer sk-ai-xxx" \
https://www.ai-insight.org/api/v1/funding/stats
获取月度融资趋势数据。
curl -H "Authorization: Bearer sk-ai-xxx" \
https://www.ai-insight.org/api/v1/funding/trend
搜索 Search
跨资讯和视频的统一搜索。结果按日期倒序排列。
| 参数 | 类型 | 必填 | 说明 |
q | string | 是 | 搜索关键词 |
type | string | 否 | 逗号分隔的类型筛选,可选 news、videos,默认全部 |
page | integer | 否 | 页码,默认 1 |
per_page | integer | 否 | 每页条数,默认 20,上限 100 |
curl -H "Authorization: Bearer sk-ai-xxx" \
"https://www.ai-insight.org/api/v1/search?q=GPT&type=news"
每条结果包含 type("news" 或 "video")和 item 对象。使用 has_more 分页。
Key 管理
Key 管理端点需要 Session 登录(非 API Key 认证),通过浏览器 cookie 会话身份验证。
创建新的 API Key。每个账户上限 5 个。创建成功后返回完整 Key(仅显示一次)。
| 参数 | 类型 | 必填 | 说明 |
name | string | 否 | Key 名称,默认 "Default" |
curl -X POST https://www.ai-insight.org/api/v1/keys \
-H "Content-Type: application/json" \
-d '{"name": "My App"}' \
-b cookies.txt
响应示例:
{
"ok": true,
"data": {
"id": 1,
"key": "sk-ai-a1b2c3d4e5f6...",
"key_prefix": "sk-ai-a1b2c3d4",
"name": "My App",
"tier": "free",
"created_at": "2026-03-13T..."
}
}
列出当前用户的所有 API Key(不含完整 Key,仅 prefix)。
curl https://www.ai-insight.org/api/v1/keys -b cookies.txt
更新 API Key 的名称或激活状态。
| 参数 | 类型 | 必填 | 说明 |
id | integer | 是 | Key ID(路径参数) |
name | string | 否 | 新名称 |
is_active | boolean | 否 | 是否激活 |
curl -X PATCH https://www.ai-insight.org/api/v1/keys/1 \
-H "Content-Type: application/json" \
-d '{"name": "Production", "is_active": true}' \
-b cookies.txt
吊销(永久删除)一个 API Key。操作不可逆。
| 参数 | 类型 | 必填 | 说明 |
id | integer | 是 | Key ID(路径参数) |
curl -X DELETE https://www.ai-insight.org/api/v1/keys/1 -b cookies.txt
错误码
错误响应格式:
{
"ok": false,
"error": {
"code": "unauthorized",
"message": "API key required. Get one at ai-insight.org/dashboard/api-keys"
}
}
| HTTP 状态码 | 错误码 | 说明 |
| 400 | invalid_request | 请求参数缺失或无效 |
| 401 | unauthorized | 未提供 API Key、Key 无效、已吊销或已过期 |
| 403 | forbidden | 无权限访问该资源(如自定义研报) |
| 404 | not_found | 请求的资源不存在 |
| 429 | rate_limit_exceeded | 超过速率限制(每分钟或每月),检查 retry_after |
| 500 | internal_error | 服务器内部错误 |
Prompt 示例
以下指令可直接复制给 AI Agent(Claude Code / Codex / Kimi-CLI / Qwen-CLI)使用。AI 会自动读取 API 文档、理解接口并完成任务。
🤖 让 AI 自动调用 API 的方法
claude "Read https://www.ai-insight.org/api/v1/how-to-use.md and then: 帮我看看今天 AI 有什么新闻"
推荐首试
无需 Key
"帮我看看今天 AI 领域有什么新闻,按分类整理一下。"
→ GET /news?period=daily → 按 category 分组展示(覆盖产品发布/大模型/芯片等 11 个分类)
需要 Key
"搜一下最近关于 Claude 的新闻,给我最新的 5 条。"
→ GET /news/search?q=Claude&per_page=5
无需 Key
"AI Insight 上有哪些深度研报?给我推荐几篇值得看的。"
→ GET /reports?per_page=10 → 筛选 featured=true 的研报推荐
无需 Key
"帮我查一下 AI 领域最近一周的产品发布类新闻。"
→ GET /news?period=weekly&category=产品发布
无需 Key
"有哪些关于 AI Agent 的播客或访谈视频?"
→ GET /videos → 筛选标题/描述含 Agent 的视频
需要 Key
"帮我看看大模型赛道有哪些公司,融资情况怎么样。"
→ GET /companies?sector=大模型 → GET /funding/stats
需要 Key
"帮我分析一下 2026 年 AI 融资趋势,画个月度趋势图。"
→ GET /funding/trend → 用返回的月度数据绘图
需要 Key
"搜一下 OpenAI 这家公司的详细信息和融资历史。"
→ GET /companies/openai
无需 Key
"帮我对比一下本周和上周的 AI 新闻热点有什么变化。"
→ GET /news?period=weekly → GET /news?from=上周一&to=上周日 → 对比分析
无需 Key
"3 月份有哪些 AI 相关的新闻?帮我写一份月度简报。"
→ GET /news?from=2026-03-01&to=2026-03-31&per_page=100 → 归纳总结
Tips
- 资讯、编辑精选研报、视频端点无需 API Key(投资研报需要 Key,自定义研报不开放)
- 公司、融资、搜索端点需要 API Key — 免费注册即可获取
- category 可选值: 产品发布 / 企业动态 / 研究 / 观点 / 芯片 / 大模型 / 机器人 / 硬件 / 活动 / 人物 / 行业
- per_page 控制返回条数(上限 100),配合 page 翻页
更新日志
v1.5.0 2026-03-13
- REST API v1 上线:25 个端点覆盖资讯、研报、视频、公司、融资、搜索
- 三级 API Key 体系(Free / Developer / Business)
- DB-backed 原子限流(适配 Vercel Serverless 无状态架构)
- MCP Server + A2A Agent Card