发现一个可以免费薅token对接OpenClaw的平台,一共450
白山云,新用户「注册并完成实名认证」即赠送 150元 体验金,调用api再给300元,一共450元 能用GLM-5,我测试一下,响应速度挺快的,额度给的也足够多。 认证先给150元,群友反馈,调用api后几个小时后就会再给300 注册链接是这个https://ai.baishan.com 目前还没打算用,写了个node脚本先调用了一下api,把300拿到手 当然用curl调用一下也行,我只是顺便还要开发别的,直接写了个node的 那完了450代金券,直接在OpenClaw里用,真香。const url = "https://api.edgefn.net/v1/chat/completions";
const apiKey = "你的token";
const headers = {
Authorization: `Bearer ${apiKey}`,
"Content-Type": "application/json",
};
const data = {
model: "Qwen2.5-72B-Instruct",
messages: [{ role: "user", content: "Hello, how are you?" }],
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(data),
})
.then((res) => res.json())
.then((json) => console.log(JSON.stringify(json, null, 2)))
.catch((err) => console.error("Error:", err));