获取积分消耗总计
最新更新:
获取积分消耗总计
获取 Bot 在某时间范围内的积分消耗总计。
注意:最多查询 365 天范围的数据。
请求方式
GET
调用地址
https://api.gptbots.ai/v1/account/bill/total
调用验证
详情参见 API 概述的鉴权方式说明。
请求
请求示例
curl --location 'https://api.gptbots.ai/v1/account/bill/total?start_time=1732982400000&end_time=1735660799999' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
curl --location 'https://api.gptbots.ai/v1/account/bill/total?start_time=1732982400000&end_time=1735660799999' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json'
此代码块在浮窗中显示
请求头
字段 | 类型 | 描述 |
---|---|---|
Authorization | Bearer ${token} | 使用 Authorization: Bearer ${token}进行调用验证,请在 API 密钥页面获取密钥作为 token。 |
Content-Type | application/json | 数据类型,取值为 application/json。 |
请求体
字段 | 类型 | 必填 | 说明 |
---|---|---|---|
start_time | String | 是 | 开始时间。 |
end_time | String | 是 | 结束时间。 |
响应
响应示例
{
"start_date": "2022-02-02",
"end_date": "2022-02-03",
"total": 100.0000,
"chat": 10.0000,
"knowledge_doc_indexing": 10.0000,
"knowledge_doc_storage": 10.0000,
"rerank": 10.0000,
"database_processing": 10.0000,
"tool_call": 10.0000,
"asr": 10.0000,
"tts": 10.0000
}
{
"start_date": "2022-02-02",
"end_date": "2022-02-03",
"total": 100.0000,
"chat": 10.0000,
"knowledge_doc_indexing": 10.0000,
"knowledge_doc_storage": 10.0000,
"rerank": 10.0000,
"database_processing": 10.0000,
"tool_call": 10.0000,
"asr": 10.0000,
"tts": 10.0000
}
此代码块在浮窗中显示
成功响应
字段 | 类型 | 说明 |
---|---|---|
start_date | String | 开始日期。 |
end_date | String | 结束日期。 |
total | Number | 总积分。 |
chat | Number | 文本对话内消耗的积分。 |
knowledge_doc_indexing | Number | 知识文档索引消耗的积分。 |
knowledge_doc_storage | Number | 知识文档存储消耗的积分。 |
rerank | Number | 重排消耗的积分。 |
database_processing | Number | 数据库处理消耗的积分。 |
tool_call | Number | 调用工具消耗的积分。 |
asr | Number | 语音转文本消耗的积分。 |
tts | Number | 文本转语音消耗的积分。 |
失败响应
字段 | 类型 | 描述 |
---|---|---|
code | int | 错误码。 |
message | string | 错误详情。 |