dxnt/free
免费模型路由

一行代码接入AI,系统自动优选最优免费模型
兼容 OpenAI API 格式,每天100次免费调用

48可用模型
100每日次数
完全免费
友情提示:API Key 每10-15天更新一次。
调用示例
# 使用 dxnt/free 免费路由
curl https://www.dxnt.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_FREE_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "dxnt/free", "messages": [{"role": "user", "content": "Hello!"}]}'
您的免费 API Key
登录 后获取免费 Key
Base URL: https://www.dxnt.com/v1

三步开始使用

1

登录获取 Key

登录后在本站获取当前有效的免费 API Key,Key 每10-15天自动轮换

2

配置接入点

将 Base URL 设为 https://www.dxnt.com/v1,填入获取的 Key

3

开始调用

将 model 改为 dxnt/free,即可免费使用系统优选的最佳模型

使用方式

Python SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://www.dxnt.com/api/v1",
    api_key="sk-free-xxx"
)

response = client.chat.completions.create(
    model="dxnt/free",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
cURL
curl https://www.dxnt.com/v1/chat/completions   -H "Authorization: Bearer sk-free-xxx"   -H "Content-Type: application/json"   -d '{"model":"dxnt/free","messages":[{"role":"user","content":"Hello!"}]}'

产品特性

自动优选模型

每30分钟评估所有免费模型,按质量、延迟、成功率自动排序,始终调用最优模型

零改造接入

完全兼容 OpenAI API,只需将 model 改为 dxnt/free,无需修改其他代码

安全可靠

API Key 每10-15天自动轮换,100次/日防滥用,保障服务可持续

持续更新

免费模型库不断扩充,新模型自动加入,能力持续增强