API 认证
所有 API 请求都需要通过 Bearer Token 方式进行认证。
获取 API Key
- 访问 API Key 管理页面
- 获取您的专属 API Key
使用方式
在请求头中添加:
Authorization: Bearer YOUR_API_KEY
安全提示
- 请妥善保管您的 API Key,不要泄露给他人
- 如果怀疑 API Key 泄露,请立即在管理页面重置
示例代码
const API_KEY = "your_api_key_here";
async function callApi(endpoint, data) {
const response = await fetch(`https://deepseekapiio.erweima.ai${endpoint}`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${API_KEY}`,
},
body: JSON.stringify(data),
});
return response.json();
}