├── .gitignore ├── README.md ├── billing └── index.html ├── components └── Layout.tsx ├── next-env.d.ts ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── api │ ├── auth │ │ └── [...nextauth].ts │ └── claim │ │ ├── new.ts │ │ └── status.ts └── index.tsx ├── public ├── favicon.ico ├── logo.png └── meta.png ├── styles ├── Home.module.scss ├── Layout.module.scss └── global.scss ├── tsconfig.json └── utils ├── addresses.ts └── dates.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .next/ 3 | *.log 4 | .env* 5 | cache/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terobox/ChatGPT-API-Faucet/1a2c4f6051dca65c3d65cc11193a014038950f36/README.md -------------------------------------------------------------------------------- /billing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |101 | 本平台提供的免费 ChatGPT API 令牌, 有 OpenKey 账号池服务提供支持. 我们不会收集用户信息, 并对使用此服务造成的任何损失不承担责任. 用户应该理解与此服务相关的风险, 并独立评估其价值. 我们保留随时修改或终止此服务的权利, 恕不另行通知. 请谨慎使用. 102 |
103 |181 | {firstClaim 182 | ? "You have successfully claimed tokens. You can request again in 24 hours." 183 | : "恭喜! 您已成功领取一个令牌, 可在24小时后再次申请. "} 184 |
185 | {token && ( 186 |获得令牌:
189 |199 | {token}
接口地址:
203 |213 | https://openkey.cloud
217 | 可用余额: $1.00 218 | 228 | 余额查询 229 | 230 |
231 |{isVerificationSent ? "请输入收到的邮箱验证码:" : "请输入您的电子邮件地址以获取ChatGPT API令牌:"}
249 | {/*请输入您的电子邮件地址以获取ChatGPT API令牌:
*/} 250 | 251 | {/* 根据 isVerificationSent 状态切换输入框 */} 252 | isVerificationSent ? setVerificationCode(e.target.value) : setAddress(e.target.value)} 257 | /> 258 | 259 |{statusMessage}
} 271 | 272 | {isValidInput(address) ? ( 273 | isChecked ? ( 274 | 281 | ) : ( 282 | 285 | ) 286 | ) : ( 287 | 290 | )} 291 |341 | - 您将收到一个API令牌和接口地址, 将 OpenAI 官方接口替换为此处提供的地址, 即可开始使用. 342 |
343 |344 | - 默认情况下, 令牌有 $1.00 的使用限制, 有效期为1个月. 这是完全免费的, 请勿滥用. 345 |
346 |347 | - 您可以每24小时从水龙头领取一次. 348 |
349 |350 | - 余额查询地址. 351 |
352 |361 | https://billing.openkey.cloud/
362 |363 | - 如果您愿意支持这个项目, 我们将不胜感激. 364 |
365 |374 | USDT TRC-20: TTtgEjbTWcv5hryt4pKTQK9Zov47ffA8s1
375 |376 | - 欢迎评论交流, 今天你打卡了吗? 377 |
378 |