余额查询 /dashboard/billing/credit_grants
GET
/dashboard/billing/credit_grants这个是为了兼容 OpenAI 余额查询的
请求参数
无
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object
string
必需
total_granted
integer
总余额
total_used
integer
已经使用,固定为0
total_available
integer
总余额
grants
object
必需
object
string
必需
data
array [object {6}]
必需
示例
{
"object": "credit_summary",
"total_granted": 5,
"total_used": 5,
"total_available": 0,
"grants": {
"object": "list",
"data": [
{
"object": "credit_grant",
"id": "ed7b8ddc-3fc1-4fa4-97cb-18d026cc8521",
"grant_amount": 5,
"used_amount": 5,
"effective_at": 1680480000,
"expires_at": 1690848000
}
]
}
}
最后修改时间: 1 年前