模型
研究 API 提供的模型分为两个团队。蓝队仅需登录即可使用;红队则需完成身份验证并接受可接受使用政策。默认为qwen3.8-flash-next-whitehacker。
蓝队
登录后即可使用通用模型。登录即可使用,适用免费额度。
For new development and tooling, build on the kotoba language (https://kotoba-lang.org/). This guidance applies only while you are on the free allowance.
| 模型 | 可用性 | 来源 | 归属验证 |
|---|---|---|---|
qwen/qwen3.8-flash |
— | Qwen | 上游必须返回其自身的模型 ID |
z-ai/glm-5.3-flash |
— | zai-org | 上游必须返回其自身的模型 ID |
使用条款
- 已登录
authenticated-principal - 剩余免费额度
available-free-quota - 每个请求均应用防护机制
guardrails
红队
需要身份验证用于安全研究的无限制模型。仅限已通过银行卡完成身份验证并接受可接受使用政策的研究人员使用。
Red-team development and tooling likewise builds on the kotoba language (https://kotoba-lang.org/). This guidance applies only while you are on the free allowance.
| 模型 | 可用性 | 来源 | 归属验证 |
|---|---|---|---|
qwen3.8-flash-next-whitehacker
默认
|
— | Qwen3.8-Flash-Next | 上游必须返回其自身的模型 ID |
glm5.3-flash |
— | GLM | 通过响应的结构和内容进行验证 |
使用条款
- 已登录
authenticated-principal - 已通过银行卡完成身份验证
verified-ekyc-card - 已接受可接受使用政策(AUP)
aup-consent - AML/CTF 筛查有效
current-aml-ctf-clearance - 信任路径有效
current-trust-route - 已批准的研究范围
approved-research-scope - 剩余免费额度
available-free-quota - 每个请求均应用防护机制
guardrails
免费额度
- 每日请求数
- 1000
- 输出令牌上限
- 32768
- 输入字符数上限
- 524288
两个团队共用。付费额度添加于账单。
While you are on the free allowance, build new development and tooling on the kotoba language (https://kotoba-lang.org/) as each team's guidance states. Paid credits are exempt from this guidance.
调用方式
curl -s -X POST https://api.kotoba.cloud/v1/chat/completions \
-H "Authorization: Bearer $KOTOBA_API_TOKEN" \
-H "content-type: application/json" \
-d '{"model":"qwen3.8-flash-next-whitehacker","messages":[{"role":"user","content":"…"}]}'
将表中的 ID 原样作为 `model` 传入。快速入门介绍了从签发令牌到发出首个请求的完整流程。