三步上手:免费创建 API Key → 扫码充值 → 开始 CCS 双引擎评级扫描。
无需注册,一键生成。新 Key 自带初始余额,后续按量充值。
拿到 Key 后,三行命令即可建 Key / 查余额 / 触发评级扫描。把 cv_your_key_here 换成你刚创建的真实 Key(cv_ 开头)。
# 1) 免费创建 API Key(同 IP 重复调用返回已有 key_id)
curl -X POST https://license-api-neuralbridge-edouhcvhbo.cn-hangzhou.fcapp.run/api/v1/rating/keys/register \
-H "Content-Type: application/json" -d '{}'
# 2) 查余额(Bearer 用你创建的 Key)
curl https://license-api-neuralbridge-edouhcvhbo.cn-hangzhou.fcapp.run/api/v1/rating/quota \
-H "Authorization: Bearer cv_your_key_here"
# 3) 触发评级扫描(target 填公开 https 仓库地址,成功扣 1 次余额)
curl -X POST https://license-api-neuralbridge-edouhcvhbo.cn-hangzhou.fcapp.run/v1/rate \
-H "Authorization: Bearer cv_your_key_here" \
-H "Content-Type: application/json" \
-d '{"target":"https://github.com/owner/repo"}'
key + key_id + balance;quota 返回余额;/v1/rate 对 https://github.com/psf/requests 实测返回 score 80.0 / grade B / findings[](真实扣费,102.6s)。