返回价格列表
GET
/api/prices美元:1 === $0.002 / 1K tokens
人民币: 1 === ¥0.014 / 1k tokens
例如:
gpt-4 输入: $0.03 / 1K tokens 完成:$0.06 / 1K tokens
0.03 / 0.002 = 15, 0.06 / 0.002 = 30,即输入倍率为 15,完成倍率为 30
请求参数
无
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
data
array [object {5}]
必需
model
string
模型名称
type
string
计费方式
tokens表示按量计费, times表示按次计费
channel_type
integer
模型厂家代码
结合厂家接口查看具体厂家
input
number | integer
提示词倍率
output
number | integer
补全词倍率
message
string
必需
success
boolean
必需
示例
{
"data": [
{
"model": "string",
"type": "string",
"channel_type": 0,
"input": 0,
"output": 0
}
],
"message": "string",
"success": true
}
修改于 6 个月前