Documentation Index
Fetch the complete documentation index at: https://docs.reportify.cn/llms.txt
Use this file to discover all available pages before exploring further.
基础信息
Reportify API 基于 REST 原则构建。我们在每个请求中强制执行 HTTPS,以提高数据安全性、完整性和隐私性。
API 基础 URL该 API 不支持 HTTP,所有请求必须使用 HTTPS
快速开始
配置认证
在所有 API 请求的 Header 中加入 Authorization 头信息Authorization: Bearer YOUR_API_KEY
将 YOUR_API_KEY 替换为您在步骤 1 中获取的实际 API Key
发起请求
使用您喜欢的 HTTP 客户端发起 API 请求curl -X POST "https://api.reportify.cn/v1/search" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "NVIDIA 财报",
"num": 10
}'
认证说明
Bearer Token 格式
- Token 类型为
Bearer(注意大小写)
Bearer 和 API Key 之间有一个空格
- 完整格式:
Authorization: Bearer YOUR_API_KEY