生成令牌(API Key)
开发中POST
/api/token/::: info
系统令牌
在请个人中心
页面底部点击按钮获取,
示例当中的系统令牌统一为abc123,实际使用时请替换为自己的系统令牌
:::
请求参数
Query 参数
p
string
可选
页码(0为第一页、1为第二页、2为第三页...)
示例值:
0
pageSize
string
每页展示数量
示例值:
10
Header 参数
Authorization
string
可选
填入你的系统令牌(例如你的系统令牌为abc123则设置:abc123)
示例值:
{{你的系统令牌}}
Body 参数application/json
name
string
key名称
自定义
expired_time
integer
过期时间
用Unix 时间戳表示过期时间(如:1751808821),-1为永不过期
billing_type
integer
计费类型
1-按量计费,2-按次计费,3-混合计费,-4按量优先,-5按次优先。一般建议4
models
string
模型限制
可用模型限制,留空不限制
ip_whitelist
string
IP白名单
填入IP地址(段),支持IPv4/IPv6,多个地址用英文逗号分隔,留空不限制
rate_limit_duration
integer
周期
单位:秒,留空不限制
rate_limit_num
integer
周期内限流次数
单位:次,需跟上一项搭配使用,留空不限制
rate_limit_exceeded_message
string
超速提示
内容自定义,留空显示默认提示
ad_position
integer
广告位置
普通账户不生效保持示例值-1即可
advertisement
string
广告内容
普通用户不生效,留空即可
remain_quota
integer
余额
每500000quota=1美元,-1为无限额度
示例
{
"name": "ocoolai的令牌",
"expired_time": -1,
"billing_type": 4,
"models": "",
"ip_whitelist": "",
"rate_limit_duration": 0,
"rate_limit_num": 0,
"rate_limit_exceeded_message": "",
"ad_position": -1,
"advertisement": "",
"remain_quota": 5000000
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
integer
令牌id
user_id
integer
用户id
key
string
可选
key(需要手动在key前加上“sk-”)
status
integer
可选
令牌状态(1-启用,2-禁用)
name
string
令牌名称
created_time
integer
创建日期
accessed_time
integer
最后使用时间
expired_time
integer
可选
过期时间(-1为永不过期)
remain_quota
integer
令牌额度
unlimited_quota
boolean
是否为无限额度
used_quota
integer
已用额度
models
string
可用模型
subnet
string
可选
ip_whitelist
string
ip白名单
billing_type
integer
可选
计费模式(1-按量计费,2-按次计费,3-混合模式,4-按量优先,5按次优先)
is_initial_token
boolean
是否为初始令牌
remark
string
令牌备注
advertisement
string
广告内容
ad_position
integer
广告位置
示例
{
"data": {
"id": 663,
"user_id": 5381,
"key": "ofNP5ZUwNKKMZWqU406aE03b321e4cEfA877793d4d4cC1Fb",
"status": 1,
"name": "测试令牌",
"created_time": 1720062719,
"accessed_time": 1720062719,
"expired_time": -1,
"remain_quota": 5000000,
"unlimited_quota": false,
"used_quota": 0,
"models": "",
"subnet": "",
"ip_whitelist": "",
"billing_type": 4,
"is_initial_token": false,
"remark": "",
"advertisement": "",
"ad_position": 0
},
"message": "",
"success": true
}
最后修改时间: 4 个月前