> ## Documentation Index
> Fetch the complete documentation index at: https://docs.api.ecylt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Wbot-2（免费版本）

> 调用WZH团队提供的免费AI聊天

<Check>
  来体验官方聊天站，你可以体验到我们还未公开的内部模型！\
  访问地址：[https://w2feichat.wbot.ecylt.top](https://w2feichat.wbot.ecylt.top/#/chat)\
  访问密码：892876555
</Check>

<Warning>
  使用须知&使用协议：

  1. 该模型在未经授权的情况下不被允许用于商业用途，包括但不限于付费 API、各种中转形式的调用等。
  2. 对于商业使用，您需要联系 WZH 团队并获得商用许可。Email: [support@wzht.org](mailto:support@wzht.org)\
     商业使用许可范围和用量限制标准以获取授权时的约定为准，您可随时联系团队客户支持部门获取有关商用许可范围和限制的支持。
  3. 对于免费的非商业项目和个人用途的非营利性项目，您在使用时需在您的网站或应用中添加本文档的链接，并说明该模型向个人开发者和非商业项目免费提供。
  4. “Wbot 代理商”计划适用于第二条中定义的“商业使用”范围，且默认拥有商用许可。
  5. Wbot-2 系列模型不对免费用户和“Wbot 代理商”提供任何可用性保证。

  在您调用 Wbot-2 系列模型时，您应同意并履行本协议中规定的内容。团队将不定时巡查，并封禁不遵守协议且拒不修改的用户。

  生效日期 (UTC)：2026年3月6日 14点16分
</Warning>

<Info>
  不想对接？来体验一键生成对接示例！[https://yjsc.ecylt.top/start.php?id=1](https://yjsc.ecylt.top/start.php?id=1)
</Info>

## API 格式

说明：Wbot-2（废案），数据库非最新，免费使用。兼容 OpenAI API Chat Completions 和模型列表检索端口。

测试地址（Wbot-2）：[https://chatgpt-demo-mu-flax.vercel.app/](https://chatgpt-demo-mu-flax.vercel.app/)

<Warning>
  OpenAI API格式接口处于内测阶段，测试Key限量发放且随时更换，\
  最新测试key获取地址：[https://www.ecylt.top/t/topic/356](https://www.ecylt.top/t/topic/356)

  你可以通过购买内测Key来解决时效性问题，购买地址：[https://shop.ecylt.top/?cid=8\&mid=14](https://shop.ecylt.top/?cid=8\&mid=14)
</Warning>

<Info>
  如果你/服务器无法访问到我们提供的基础URL，你可以尝试以下几个备选方案 : )

  `https://aichat-openai.api.223387.xyz/v1/chat/completions`\
  `https://aichat-openai.api.223384.xyz/v1/chat/completions`
</Info>

### 请求

基础URL：`https://aichat-openai.api.ecylt.top/v1/chat/completions`

model参数：**`请自行通过 /v1/models 端口查看，检索需包含 API Key`**

### 返回

```json theme={null}
{
  "id": "chatcmpl-123",
  "object": "chat.completion",
  "created": 1712148728,
  "model": "wbot-2",
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": "你好！很高兴为您服务。有什么可以帮助您的吗？"
      },
      "logprobs": null,
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 0,
    "completion_tokens": 0,
    "total_tokens": 0
  }
}
```
