Repository: TechnologyStar/Openai-Claude-Deepseek-API-provider Branch: main Commit: 73b5cc8290a5 Files: 106 Total size: 560.9 KB Directory structure: gitextract_g86093ry/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 反馈失效提供方.md │ │ └── 添加api提供方.md │ └── workflows/ │ └── clean.yml ├── .gitignore ├── Automatically add.html ├── LICENSE ├── README.md ├── en.md ├── fr.md ├── ru.md └── website/ ├── README-HTML.md ├── README.md ├── attached_assets/ │ ├── Pasted--API-p-table-border-1-cellspacing-0-cellpadding-6-thead-tr--1751255126331_1751255126339.txt │ ├── Pasted--DOCTYPE-html-html-lang-zh-CN-head-meta-charset-UTF-8-meta-name-viewport-co-1751255172628_1751255172630.txt │ ├── Pasted--Logo-lionbridge-com-weglot-c-1750993147083_1750993147084.txt │ └── Pasted--UI-Openai-Claude-Deepseek-API-Provider-Last-Commit-https-img--1750993131108_1750993131110.txt ├── client/ │ ├── index.html │ └── src/ │ ├── App.tsx │ ├── components/ │ │ ├── advanced-filters.tsx │ │ ├── contribute-section.tsx │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── hero-section.tsx │ │ ├── language-switcher.tsx │ │ ├── provider-comparison.tsx │ │ ├── provider-stats.tsx │ │ ├── providers-table.tsx │ │ ├── recommended-apps.tsx │ │ ├── tags-legend.tsx │ │ ├── ui/ │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ │ └── usage-guide.tsx │ ├── hooks/ │ │ ├── use-language.tsx │ │ ├── use-mobile.tsx │ │ └── use-toast.ts │ ├── index.css │ ├── lib/ │ │ ├── api-providers-data.ts │ │ ├── queryClient.ts │ │ ├── translations.ts │ │ └── utils.ts │ ├── main.tsx │ └── pages/ │ ├── home.tsx │ └── not-found.tsx ├── components.json ├── drizzle.config.ts ├── index.en.html ├── index.fr.html ├── index.html ├── index.ru.html ├── index.zh-CN.html ├── package.json ├── postcss.config.js ├── replit.md ├── server/ │ ├── index.ts │ ├── routes.ts │ ├── storage.ts │ └── vite.ts ├── shared/ │ └── schema.ts ├── tailwind.config.ts ├── tsconfig.json └── vite.config.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/反馈失效提供方.md ================================================ --- name: 反馈失效提供方 about: 反馈站点失效提供方 title: 反馈站点失效提供方 labels: '' assignees: '' --- --- name: 反馈失效提供方 about: 反馈失效提供方模板 title: 反馈失效提供方 labels: '' assignees: TechnologyStar --- ### 网址 ### 原因 - [ ] 🚫网站无法正常打开 - [ ] ❌api功能异常 - [ ] 🛑api地址遭到中国国家防火墙拦截 - [ ] 🤔其他: ================================================ FILE: .github/ISSUE_TEMPLATE/添加api提供方.md ================================================ --- name: 添加api提供方 about: 添加api提供方 title: 添加api提供方 labels: '' assignees: TechnologyStar --- --- name: 添加api提供方 about: 添加api提供方模板 title: 添加api提供方 labels: '' assignees: TechnologyStar --- ### 网址 ### 属性 #### 基本属性(单选) - [ ] 🆓完全免费 - [ ] 🔓有免费额度(注册赠送额度>0.15美元) - [ ] 💰只能充值领额度 #### 扩展属性(多选) - [ ] 💪支持 Claude最新模型 - [ ] ✌支持openai最新模型 - [ ] 🎉支持其他模型或其他功能 - [ ] 🌎需要国际网络 - [ ] 🎁充值有较大优惠(<50%) - [ ] 🚀支持高并发 - [ ] 😆签到领余额 - [ ] 🚩网站通过中国备案 ### 附加信息 ================================================ FILE: .github/workflows/clean.yml ================================================ name: Repository Maintenance on: workflow_dispatch: permissions: contents: write jobs: repo-optimization: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Create archive branch run: | git push origin HEAD:archive-$(date +%Y%m%d) - name: Repository optimization run: | git checkout --orphan temp-main git add -A git config --global user.name "Repo Maintainer" git config --global user.email "maintainer@noreply.github.com" git commit -m "Repository optimization $(date +'%Y-%m-%d')" echo "File verification:" git ls-files | head -n 10 echo "[...truncated...]" git branch -D main git branch -m main - name: Apply changes run: | git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git git push -f origin main - name: Verify completion run: | echo "Process completed successfully" echo "Commit count: $(git rev-list --count HEAD)" echo "File count: $(git ls-files | wc -l)" ================================================ FILE: .gitignore ================================================ # Common Node/Vite artifacts node_modules/ dist/ build/ .tmp/ .temp/ # Logs npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* # Environment files .env .env.* # Editor directories and files .vscode/ .idea/ *.swp .DS_Store Thumbs.db # Coverage / test output coverage/ .junit/ # Misc *.local ================================================ FILE: Automatically add.html ================================================ AI 聊天工具推荐表生成器

AI 聊天工具推荐表生成器

赞助方平台将加入邀请码,感谢您的支持

标签含义:
 - 🆓 完全免费
 - 🔓 有免费额度
 - 💰 需要充值
 - 💪 支持 Claude 最新模型
 - ✌ 支持 OpenAI 最新模型
 - 🎉 支持其他模型或其他功能
 - 🌎 需要国际网络
 - 🎁 充值有较大优惠(<50%)
 - 🚀 支持高并发
 - 😆 签到领余额
 - 🚩 网站通过中国备案
 - ✔ 已验证安全性/真实性

📥 导入原有供应商 HTML

请在下方粘贴已有的 <table> 部分(从 <table></table>),然后点击“导入供应商”按钮。

➕ 添加或编辑供应商

序号 网站 链接 标签 备注 操作

⚙️ API 设置

================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # 🌐 OpenAI / Claude / DeepSeek API Provider [![Last Commit](https://img.shields.io/github/last-commit/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider) [![License](https://img.shields.io/github/license/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/blob/main/LICENSE) > 🏗️ 精选第三方 **OpenAI / Claude / DeepSeek / Gemini 等大模型 API** 提供方导航,方便用于学习、研究与非商业用途。

中文版 English Русская версия Version Française

--- > ⚠️ **使用与合规说明(必读)** > > 本项目为 **免费开源导航 / 整理项目/ 因部分链接还有aff,存在一定的商业性质**,仅用于技术研究与学习交流,**严禁任何违法违规用途**。 > > - 本项目 **不提供任何代理、转发或 Key 生成服务**,仅做站点信息收录与聚合展示; > - **不会收录封闭式“内部 AI 论坛 / 暗网类站点”**,如有误收录,请提交 Issue 或联系删除; > - 一旦确认误收录,对造成不良影响的平台,将在评估后予以适当赔偿与公开说明; > - 使用任何第三方平台前,请务必自行仔细阅读其《用户协议》《隐私政策》等; > - 请严格遵守各官方条款: > - 遵守 [OpenAI 使用条款](https://openai.com/policies/terms-of-use) > - 遵守 [《生成式人工智能服务管理暂行办法》](http://www.cac.gov.cn/2023-07/13/c_1690898327029107.htm),**请勿对中国公众提供未经备案的生成式 AI 服务**。 > > 🏠 官网导航页:将于近期通过leaflow搭建 > > 非常感谢 leaflow 提供服务支持! --- ## 🚀 项目简介 * 📌 收录并验证来自互联网的第三方 API 提供平台(部分免费) * 🔧 免注册 / 一键接入 / 支持多模型(OpenAI、Claude、DeepSeek 等) * 🔒 所有网站仅作收录展示,**请勿输入个人敏感信息** > 💡 如果觉得项目有帮助,欢迎 Star 🌟 --- ## 🎁 特色标签说明 ### 💰 计费 & 额度 | 标签 | 含义 | | ---- | -------------------------------- | | ❤️ | 公益站点(纯公益,无商业收费行为) | | 🆓 | 免费站点(可零成本使用,通常也提供充值 / 赞助通道) | | 🎁 | **有 ≥ 5 美刀等值免费额度**(含活动赠送 / 新人礼等) | | 💰 | 原价充值 / 商业向平台(价格接近或等同官方) | ### 🤖 模型支持 | 标签 | 含义 | | ---- | ---------------------------------------- | | 💪 | 支持 **Claude 最新主力模型** | | ✌ | 支持 **OpenAI 最新主力模型**(如 GPT-5 / 4o 等) | | ✨ | 支持 **Gemini 系列模型** | | 🎉 | 支持其他主流模型(如 DeepSeek、Llama、Qwen、国内模型等) | | 🏓 | 对话专用平台(以“聊天”为主,API 能力可能有限或需单独开通) | | 🍹 | claudecode站点 | ### 🎯 使用特性 | 标签 | 含义 | | ---- | -------------------------------- | | 🏷️ | 一元一刀(计费接近 1 元 / 1 美刀) | | 😆 | 可每日签到领余额 / 任务送代币 | | ✉️ | 含有邀请码 / 邀请奖励(本表中不超过 5 个站点打此标,在一定情况下,我们可以保证这些站点的可信度及可用性) | ### 🌐 网络与合规 | 标签 | 含义 | | ---- | ------------------------ | | 🌎 | **需要国际网络** 才能稳定访问 | | 🚩 | 已备案平台(中国境内有备案信息) | ### ⚙️ 性能与质量 | 标签 | 含义 | | ---- | ------------------------------------- | | 🚀 | 支持高并发(适合批量请求 / 多用户场景) | | ⚡ | 低延迟(官方或实测延迟 ≲ 300ms) | | 🎖️ | 推荐级优质平台(人工主观评价,**全表不超过 5 个**) | --- ## 📱 推荐应用支持
📦 点击展开查看兼容应用列表 ### ✅ [Cherry Studio](https://github.com/CherryHQ/cherry-studio) > **跨平台桌面端 + 移动端,集成主流 AI 云服务 + 本地模型。** > - **平台支持**:Windows、macOS、Linux、iOS、Android > - **模型集成**:OpenAI、Anthropic、本地模型(Ollama、LM Studio 等) > - **核心功能**:多会话管理、自定义提示词、插件扩展 > - **特色亮点**:统一的界面管理不同模型,适合需要混合云端和本地推理的用户 ### ✅ [ChatGPT 好友插件 (uTools)](https://u.tools/plugins/detail/ChatGPT.%E5%A5%BD%E5%8F%8B/) > **桌面端智能聊天插件,支持角色设定、多模型、多会话管理。** > - **平台支持**:Windows、macOS、Linux(需安装 uTools 平台) > - **模型集成**:OpenAI、文心一言、通义千问、DeepSeek 等 > - **核心功能**:全局快捷键呼出、角色预设、对话历史保存 > - **特色亮点**:轻量级插件形式,适合追求效率的桌面用户 ### ✅ [ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) > **开源网页端 ChatGPT 前端,支持 API Key 与多用户协作。** > - **部署方式**:Vercel、Docker、本地部署 > - **模型集成**:OpenAI、Azure OpenAI、自定义代理 > - **核心功能**:多会话、对话分享、Markdown 渲染、多语言 > - **特色亮点**:界面简洁、部署简单,适合个人或团队快速搭建 ### ✅ [LobeChat](https://github.com/lobehub/lobe-chat) > **支持视觉、语音交互和多模型切换,网页端 AI 会话框架。** > - **部署方式**:Vercel、Docker、本地部署 > - **模型集成**:OpenAI、Claude、Gemini、本地模型(Ollama 等) > - **核心功能**:语音输入/输出、文件上传解析、插件市场 > - **特色亮点**:现代化 UI、丰富的交互方式,适合多模态需求用户 ### ✅ [BotGem](https://botgem.com/) > **移动端优先设计,支持语音交流与 AI 好友系统。** > - **平台支持**:iOS、Android > - **模型集成**:OpenAI、自定义 API > - **核心功能**:语音对话、角色扮演、个性化 AI 助手 > - **特色亮点**:移动端优化体验,适合日常语音交互场景 ### ✅ [ChatBox](https://github.com/Bin-Huang/chatbox) > **支持 iOS、Android 和桌面端,界面现代,功能完整。** > - **平台支持**:Windows、macOS、Linux、iOS、Android > - **模型集成**:OpenAI、自定义 API > - **核心功能**:多会话、主题切换、API 配置管理 > - **特色亮点**:全平台覆盖,界面美观,适合跨设备用户 ### ✅ [FastGPT](https://github.com/labring/FastGPT) > **知识库 + 工作流集成,企业内训/客服场景首选。** > - **部署方式**:Docker、云服务 > - **模型集成**:OpenAI、本地模型、向量数据库 > - **核心功能**:知识库问答、工作流编排、多模型路由 > - **特色亮点**:企业级应用,适合构建定制化 AI 助手 ### ✅ [AnythingLLM](https://github.com/Mintplex-Labs/anything-llm) > **支持本地部署与插件扩展,适合对数据隐私有要求的用户。** > - **部署方式**:Docker、本地安装 > - **模型集成**:OpenAI、本地模型(Ollama、Llama.cpp) > - **核心功能**:文档上传与分析、多用户管理、插件系统 > - **特色亮点**:隐私优先、支持私有化部署,适合企业或敏感数据场景
## 正文
序号网站链接标签备注
1OpenRouter(优质)https://openrouter.ai🔓✌💪🎉🚀支持 293 个模型,提供免费额度,目前最正规的第三方中转,还部分开源免费模型
2zenmux(推荐;官转)https://zenmux.ai🎖️🔓✌💰🚀多模型聚合服务,提供免费模型(速率限制较严/有免费高级模型,但随时变化)、图像生成与各类文本模型,平台支持"模型赔付"机制,官转渠道,不掺水
3OAIPro(优质)https://api.oaipro.com💰✌💪以接近官方的费率和稳定性提供 OpenAI 与 Claude 的标准兼容 API,官转,原价充值,模型不掺水
4chat01(推荐,对话+api)https://chat01.ai/🏓🎖️🔓✌💰✉️提供 GPT-5、pro系列等高阶模型的聊天与 API 双用平台,注册赠送每日2免费积分,可长期零成本试用,按次计费,官网版本,可联网搜索,工具调用,不支持高并发
5星辰voaartunhttps://ai.centos.hk支持claudecode,codex,多渠道支持(codex)
6Portunex(优质)https://portunex.gewulabs.group/claudecode官逆max,价格极低,疑似目前全网最低价(官逆渠道),真实性请自行辨别
7PoloAPIhttps://ptargetai.top🔓💪✌🎉💰API聚合 API,提供 Claude
8VoAPIhttps://demo.voapi.top🆓😆💪✌公益性质平台,免费开放模型 API,额度每日清零。
9V3 API(混合版)https://api.v3.cm🚀🔓💪🎉✌集成多种大模型,提供超高并发支持及稳定路由机制。
10硅基流动(企业级)https://cloud.siliconflow.cn🔓🎉🚀🚩✔企业级 AI 模型推理平台,提供千亿级模型推理、向量检索、Embedding、多模态等能力。
11V3 API(官转版)https://gf.gpt.ge🚀🌹🔓💪官方中转路线,具备更稳定的调用链与地域就近加速能力。
12openai-hkhttps://openai-hk.com🆓🔓🎉✌💪🚀提供高并发的 OpenAI 兼容 API,注册赠送体验金额。
13ChatGPT API 水龙头https://faucet.openkey.cloud🆓免费 $1 额度,3 天有效期。
14公益免费的 ChatGPT APIGitHub🆓公益免费。
15GPT-API-freeGitHub🆓💪支持 GPT-4,每天 3 次。
16openkeyhttps://openkey.cloud🔓💪✌🚀赠 $0.2,支持多并发。
17gptgod.onlinehttps://gptgod.online💪✌🎁💰🎉😆按次计费,积分额度。
18duckcodinghttps://duckcoding.com✌🎉😆🚀多模型中转 API 服务,注册即送 1 美元。
19m3.ckit.goldhttps://m3.ckit.gold💰💪✌3 元 / 刀,注册送 $0.1。
20iaicnnhttps://aicnn.cn💪✌🎁💰🎉老用户支持 API,目前已迁移。
21goapi.gptnb.aihttps://goapi.gptnb.ai💪✌💰🎉
22api.aigc369.comhttps://api.aigc369.com/pricing💪✌💰🎉
23api.mjdjourney.cnhttps://api.mjdjourney.cn💪✌💰🎉
24api.bltcy.aihttps://api.bltcy.ai💪✌💰🎉
254Z API 中转站https://4zapi.com🔓✌💪🎉🚀支持 GPT-4o、Claude 3.5,新用户赠 0.2 额度。
26简易API中转站https://jeniya.top🔓✌💪🎉🚀聚合多模型,国内直连无限制,注册送 100 元测试额度。
27CloseAIhttps://closeai-asia.com💰✌💪🎉🚀企业级代理,支持 GPT-4o、Claude 3.5,提供中文技术支持。
28云鲸AIhttps://api.atalk-ai.com🔓✌💪🎉🚀聚合 ChatGPT、Claude、文心一言,注册赠 5 元体验券。
29ModelBridgehttps://model-bridge.okeeper.com🔓✌💪🎉🚀国内免费代理,兼容 OpenAI 接口和国产模型。
30UiUi APIhttps://sg.uiuiapi.com🔓✌💪🎉🚀支持 Claude 4、Gemini 等模型,兼容 OpenAI 接口格式。
31老张API中转服务https://api.laozhang.ai🔓✌💪🎉🚀支持 Claude 3 和 GPT-4o,新用户赠 20 元额度。
32海鲸AI聚合平台https://ai.atalk-ai.com🔓✌💪🎉🚀国内备案平台,支持多模型统一 API 接入。
33One APIhttps://one-api.ai🔓✌💪🎉🚀开源接口管理系统,支持多模型分发和私有化部署。
34Gemini API代理https://gemini-proxy.com🔓✌🎉🚀支持 Google Gemini 模型,兼容 OpenAI 接口。
35DeepSeek API聚合https://deepseek-aggregator.com🔓💪🎉🚀聚合 DeepSeek 系列模型,提供免费测试额度。
36Hugging Face模型代理https://huggingface.co/inference-api🔓💪🎉🚀支持开源模型(如 Llama 3),提供免费额度和企业级服务。
37AI21 Labs官方代理https://studio.ai21.com💰✌💪🎉支持 Jurassic-2 模型,适合自然语言处理任务。
38Cohere API代理https://cohere.ai💰✌💪🎉支持文本生成和分类模型,提供企业级 API。
39AI API聚合平台https://api.ai-aggregator.com🔓✌💪🎉🚀聚合多模型,提供统一接口和负载均衡。
40AI.LShttps://ai.ls🆓✌极简接口,GPT-3.5 免费匿名使用。
41简易APIhttps://jeniya.top🔓✌💪🎉🎁注册送 ¥100 额度,支持 Claude / GPT-4o 多模型。
42OpenAI120https://openai120.com🔓✌🎁新用户送 $3 额度,单价同官方。
43DuckAGIhttps://duckagi.com💰✌🎉🚀多模态支持 GPT-4o / Sora,适合 AI 绘图。
44Aihubmixhttps://aihubmix.com💰🎉国产模型聚合(文心一言 / 通义千问)。
45WokaAIhttps://wokaai.com双线路。
46azapihttps://azapi.com.cn💰长期使用优惠。
47ClaudeAPIhttps://claudeapi.io💪🚀✔Anthropic 官方合作,支持文件解析。
48Gala APIhttps://galaapi.com🎉🚀谷歌 Gemini 专用高速通道。
49Google AI Studiohttps://ai.google.dev🆓🌎✔Gemini 系列完全免费,需科学上网访问。
50OpenAI 数据共享计划https://platform.openai.com🔓✌🌎开启数据共享后每日最高获 1M 免费 tokens。
51Mistral AI La Plateformehttps://platform.mistral.ai🔓🎉🌎官方平台提供免费 API 试用额度(受限速率)。
52Coherehttps://cohere.com🔓🎉🌎注册可获 Trial Key,免费调用但有速率限制。
53魔搭 ModelScopehttps://modelscope.cn🔓🎉🚩聚合 DeepSeek / Qwen 等模型,模型试用与下载免费。
54字节 方舟协作奖励计划https://www.volcengine.com/product/ark🔓🎉参与计划单模型每天送 50 万 Tokens。
55智谱 BigModelhttps://open.bigmodel.cn🆓🎉GLM-4-Flash API 完全免费,支持 128K 上下文。
56书生 InternLMhttps://internlm.intern-ai.org.cn🆓🎉官方开放免费 API,可直接调用。
57GitHub Modelshttps://docs.github.com/github-models🔓✌🎉🌎Azure 托管,提供受限免费 API 配额。
58OpenRouter(免费版)https://openrouter.ai🔓💪✌🎉🌎✔免费模型每日 ≤ 50 次,余额 ≥ 10$ 可升至 1000 次。
59Chuteshttps://chutes.ai🔓🎉部分模型每日 200 条免费额度,支持 DeepSeek 等。
60Groq Cloudhttps://groq.com/groqcloud🔓🎉🌎可申请免费 API Key,推理速度极快。
61Cerebras Inferencehttps://inference.cerebras.ai🔓🎉🌎🚀开发者每日享 1M 免费 tokens,LLM 推理可达 450 t/s+。
62无问芯穹 GenStudiohttps://cloud.infini-ai.com/genstudio🆓🎉DeepSeek R1 / V3 满血版免费 Token,无需邀请码。
63PH8 大模型 MaaS 平台https://ph8.co💰🎉✨✌💪面向开发者的大模型聚合 / MaaS 平台。
64Cloudflare AI Gatewayhttps://www.cloudflare.com💰🎉✨✌💪Cloudflare 提供的 AI 流量网关产品。
65ocoolAI API 站https://one.ocoolai.com💰🎉✨✌💪全球 AI 一站集成平台,完全兼容 OpenAI API。
66TokenFluxhttps://tokenflux.ai💰🎉✨✌💪统一 AI API 网关,支持约 600 个 MCP 服务器。
67302.AIhttps://302.ai💰🎉✨✌💪被称为"AI 超市",聚合 50 万+ AI 应用。
68MegaLLMhttps://megallm.io💰🎉✨✌💪统一 AI Gateway,可连接 70+ 大模型。
69AI/ML API(AIMLAPI)https://aimlapi.com💰🎉✨✌💪单一 API 访问 400+ AI 模型。
70NagaAIhttps://naga.ac💰🎉✨✌💪Unified AI Aggregator。
71Groq / GroqCloudhttps://groq.com💰🎉✨✌💪专注推理的硬件与云服务,LPU™ 主打极高吞吐。
72Eden AIhttps://www.edenai.co💰🎉✨✌💪统一 AI API,涵盖文本、语音、图像、OCR 等任务。
73Ikuncodehttps://api.ikuncode.cc🏷️💰✌💪采用 New API 的统一网关。
74Duckcodinghttps://duckcoding.com🏷️✨✌💪提供 Claude Code / Codex / Gemini CLI 的令牌与分组管理。
75Right Codehttps://right.codes🏷️✨✌💪面向团队 / 企业的 AI API 平台。
76GalaxyCodehttps://nf.video🏷️✨品牌主页入口。
77YesCodehttps://co.yes.vg🏷️💰✌💪Claude API 路由与计量平台。
78PackyAPI(PackyCode)https://www.packyapi.com🍹🏷️💰🎉✨💪大型 AI API 聚合平台。
79SSSAiCodehttps://www.sssaicode.com🏷️✨💪提供 Claude / Codex 代理封装及多语言 SDK。
80Cubencehttps://cubence.com🏷️✨✌💪企业级 AI API Gateway。
81EasyChat AIhttps://easychat.site🍹🎉✨✌桌面端 AI 工具。
82Clarkhttps://clarkf.site✨✌工具说明与入口站点。
83FoxCodehttps://foxcode.rjj.cc🍹🎉✨✌💪AI 编程平台,支持代码生成。
84AICodeMirrorhttps://www.aicodemirror.com🍹🏷️🎉✨✌💪支持 Claude Code / Codex / Gemini CLI 的综合平台。
85MikuCodehttps://mikucode.xyz🍹🏷️💰✨✌💪统一 LLM API Gateway。
86CodeClihttps://code-cli.cn🏷️✨CLI + AI 集成相关工具入口。
87Xyaihttps://new.xychatai.com🏷️✨✌含 Vibe-Code / Claude Code 模块。
88AIMZhttps://mzlone.top🏷️💰✨基于 New API 的网关实例。
89Privnodehttps://privnode.com🍹🏷️💰🎉✨💪主打低成本接入 Claude Code / Codex。
90JikeAIhttps://magic666.top🏷️💰✨💪第三方 Claude Code 中转服务。
91Uucodehttps://www.uucode.org🍹🏷️💰🎉✨💪提供 Claude Code / Codex 专用 BASE_URL。
9288codehttps://www.88code.org🍹🏷️💰🎉✨💪"平价 Claude Code 中转站"。
93小爱 New API 中转站https://xiaoai.plus💰🎉✨✌💪基于 New API 的大模型聚合中转平台。
94AiCore / XTY 接口聚合https://svip.xty.app💰🎉✨✌💪典型 One API / New API 风格控制台。
95ChatAi API 聚合站https://www.chataiapi.com💰🎉✨✌💪企业级大模型 API 平台,主打官方价格约 1 折。
96One API 自建网关(zaiwen)https://oneapi.zaiwen.top💰🎉✨✌💪面向自建用户的 One API 网关。
97钱多多 API 聚合平台https://api.ifopen.ai💰🎉✨✌💪以 New API 面板为核心的多模型中转站。
98Shell API / DPAPI 聚合网关https://dpapi.cn💰🎉✨✌💪品牌名为 Shell API 的多模型 API 平台。
99LittleWheat OpenAI 中转站https://chatapi.littlewheat.com💰🎉✨✌💪以"OpenAI 余额查询 + 中转接口"闻名。
100VimsAI API 聚合平台https://www.vimsai.com💰🎉✨✌💪兼容 OpenAI 标准的全球 AI 模型接入平台,900+ 模型。
101xcodehttps://xcode.best/claudecode专用,多渠道支持
102skapihttps://jk.skcdn.cn/支持claudecode,价额便宜
## 📖 使用指南 1. 🔑 获取 API Key:注册平台后,在用户中心复制 2. ⚙ 配置 Endpoint:填写 API 地址到支持应用中 3. 🤖 选择模型:根据平台支持情况切换不同模型 4. 📊 用量监控:推荐使用客户端自带用量限制功能 --- ## 🙌 贡献指南 我们欢迎以下贡献方式: * ✨ 添加新 API 提供商(需稳定运行 ≥ 3 天) * 🧰 补充使用教程(包括配置截图、录屏) * 🧪 开发验证脚本(自动检测失效平台) * 🌍 多语言翻译(如:英文、日文、韩文等) > 请提交 Pull Request 或 Issue,我们将尽快处理! --- ## ❌ 失效平台列表
📛 点击展开查看失效平台 | # | 名称 | 链接 | 状态 | | - | ------ | ---------------------------------------- | ------ | | 1 | 464888 | [api.464888.xyz](https://api.464888.xyz) | ❌ 无法访问 | > 如发现新失效平台,欢迎通过 Issue 提交!
--- ## ⚖️ 法律免责声明 * 本项目不存储任何 API Key,也不提供代理或转发服务。 * 所有平台来源于互联网,使用风险请自行评估。 * 若因使用第三方服务造成损失,作者不承担任何法律责任。--- ## 🙏 特别鸣谢 非常感谢 zenmux 提供 api 平台支持! [立即注册并使用优惠码](https://zenmux.ai/invite/U1QU1H) 非常感谢 chat01 提供服务支持! [访问 chat01 并使用优惠码](https://chat01.ai/?ref=j45ikbTa) 非常感谢 leaflow 提供服务支持! [访问 leaflow ](https://leaflow.net/) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") --- [![Star History](https://api.star-history.com/svg?repos=TechnologyStar/Openai-Claude-Deepseek-API-provider\&type=Date)](https://star-history.com/#TechnologyStar/Openai-Claude-Deepseek-API-provider&Date) Made with ❤️ by [TechnologyStar](https://github.com/TechnologyStar) ================================================ FILE: en.md ================================================ # 🌐 Openai / Claude / Deepseek API Provider [![Last Commit](https://img.shields.io/github/last-commit/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider) [![License](https://img.shields.io/github/license/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/blob/main/LICENSE) > 🏗️ A curated list of third-party platforms providing **OpenAI / Claude / DeepSeek** APIs for learning, research, and non-commercial use.

中文版 English Русская версия Version Française

--- > ⚠️ **Usage Notes** > > This is a free, public-welfare project. Any illegal use is strictly prohibited. > **We do not include internal-only AI forum sites. If a site was added by mistake, please contact us for removal. After evaluation, we will compensate for verified mislistings.** > * Follow the [OpenAI Terms of Use](https://openai.com/policies/terms-of-use) > * Comply with the [Interim Measures for the Administration of Generative AI Services](http://www.cac.gov.cn/2023-07/13/c_1690898327029107.htm)—**do not provide unregistered generative AI services to the public in China** > * Official site: [Openai / Claude / Deepseek API Provider](https://d706445b-7658-4708-bb08-bac6c5a775ad-00-2z2hsdckl4fie.riker.replit.dev/) --- ## 🚀 Project Overview * 📌 Curates and validates third-party API providers across the internet (some are free) * 🔧 Zero registration / one-click access / multi-model support (OpenAI, Claude, DeepSeek, etc.) * 🔒 Listings are for reference only—**never enter sensitive personal information** > 💡 If you find this project helpful, feel free to leave a Star 🌟 --- ## 🎁 Tag Legend | Tag | Meaning | | --- | ----------------------------------------- | | 🆓 | Completely free | | 🔓 | Includes a free quota | | 💰 | Requires payment | | 💪 | Latest Claude support | | ✌ | Latest OpenAI support | | 🎉 | Other models supported (e.g., DeepSeek) | | 🌎 | Requires international network access | | 🎁 | Recharge bonus or promotional credits | | 🚀 | High-concurrency support | | 😆 | Daily check-in rewards | | 🚩 | ICP-compliant / registered platform | | ✔ | Manually verified for authenticity | --- ## 📱 Compatible Applications
📦 Click to view the list of compatible apps ### ✅ [Cherry Studio](https://github.com/CherryHQ/cherry-studio) > Cross-platform desktop + mobile client integrating mainstream AI cloud services and local models. ### ✅ [ChatGPT Friends Plugin (uTools)](https://u.tools/plugins/detail/ChatGPT.%E5%A5%BD%E5%8F%8B/) > Desktop AI chat plugin with role presets, multi-model, and multi-session management. ### ✅ [ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) > Open-source web front end for ChatGPT with API key support and multi-user collaboration. ### ✅ [LobeChat](https://github.com/lobehub/lobe-chat) > Web-based AI chat framework with vision, speech, and multi-model switching. ### ✅ [BotGem](https://botgem.com/) > Mobile-first design with voice conversations and AI companion system. ### ✅ [ChatBox](https://github.com/Bin-Huang/chatbox) > Supports iOS, Android, and desktop with a modern, fully featured interface. ### ✅ [FastGPT](https://github.com/labring/FastGPT) > Knowledge-base + workflow integration—ideal for enterprise training/customer support. ### ✅ [AnythingLLM](https://github.com/Mintplex-Labs/anything-llm) > Supports local deployment and plugin extensions for privacy-conscious users.
--- ## 🌐 Third-Party API Providers
#PlatformLinkTagsNotes
1chat01 (recommended, invite code)https://chat01.ai🔓✌🎁💰✔Supports Pro tier, fixes degraded responses, 2 free credits daily, chat + API on one site
2SiliconFlow (enterprise)https://cloud.siliconflow.cn🔓🎉🚀🚩✔Huawei Cloud Ascend service with ¥14 signup bonus
3zenmux (recommended, free Gemini 3 + images)https://zenmux.ai🔓✌🎁💰Free Gemini 3 Pro access, first aggregator offering compensation guarantees
4PoloAPIhttps://poloai.top🔓💪✌🎉🎁💰New users receive $0.3 credit; aggregates Claude/Grok/OpenAI models
5OAIProhttps://api.oaipro.com💰✌💪Official pricing, stable direct connectivity, supports OpenAI and Claude APIs
6VoAPIhttps://demo.voapi.top🆓😆💪✌Fully nonprofit site with balance reset every day
7inscopilot (recommended)https://instcopilot-api.com✌🎉😆🚀$5 bonus, stable and affordable, supports credit cards
8V3 API (hybrid)https://api.v3.cm🚀🔓💪🎁🎉✌$0.2 bonus, high concurrency, 30% recharge pricing, tons of models
9V3 API (official relay)https://gf.gpt.ge🚀🌹🔓💪$0.2 bonus, high concurrency, recharge at 60% of face value
10openai-hkhttps://openai-hk.com🆓🔓🎉✌💪🚀¥1 signup reward, ultra-high concurrency, includes GPT-3.5 public edition
11ChatGPT API Faucethttps://faucet.openkey.cloud🆓$1 free credit valid for 3 days
12Charitable Free ChatGPT APIGitHub🆓Completely free community API
13GPT-API-freeGitHub🆓💪Supports GPT-4 with three free requests per day
14openkeyhttps://openkey.cloud🔓💪✌🚀$0.2 bonus credit with multi-thread support
15gptgod.onlinehttps://gptgod.online💪✌🎁💰🎉😆Pay-per-use with a flexible credit system
16m3.ckit.goldhttps://m3.ckit.gold💰💪✌3 RMB per USD, $0.1 signup bonus
17iaicnnhttps://aicnn.cn💪✌🎁💰🎉Legacy API support available; services have migrated
18goapi.gptnb.aihttps://goapi.gptnb.ai💪✌🎁💰🎉
19api.aigc369.comhttps://api.aigc369.com💪✌🎁💰🎉
20api.mjdjourney.cnhttps://api.mjdjourney.cn💪✌🎁💰🎉
21api.bltcy.aihttps://api.bltcy.ai💪✌🎁💰🎉
224Z API Relayhttps://zzzzapi.com🔓✌💪🎉🚀Supports GPT-4o and Claude 3.5 with 0.2 bonus credit for new users
23Jianyi API Relayhttps://jeniya.top🔓✌💪🎉🚀Aggregates many models, unlimited domestic access, ¥100 testing credit on signup
24CloseAIhttps://closeai-asia.com💰✌💪🎉🚀Enterprise-grade proxy for GPT-4o & Claude 3.5 with Chinese technical support
25Yunjing AIhttps://api.atalk-ai.com🔓✌💪🎉🚀Aggregates ChatGPT, Claude, Wenxin Yiyan; ¥5 trial voucher for new users
26ModelBridgehttps://model-bridge.okeeper.com🔓✌💪🎉🚀Free domestic proxy compatible with OpenAI APIs and Chinese models
27UiUi APIhttps://sg.uiuiapi.com🔓✌💪🎉🚀Supports Claude 4, Gemini, and other models with OpenAI-compatible format
28Old Zhang API Relayhttps://api.laozhang.ai🔓✌💪🎉🚀Supports Claude 3 and GPT-4o, ¥20 credit for new users, Alipay/WeChat payments
29Haijing AI Aggregatorhttps://ai.atalk-ai.com🔓✌💪🎉🚀ICP-registered domestic platform with unified multi-model API
30One APIhttps://one-api.ai🔓✌💪🎉🚀Open-source interface manager for multi-model distribution and self-hosting
31OpenRouterhttps://openrouter.ai🔓✌💪🎉🚀Supports 293+ models (OpenAI, Claude, Gemini) with complimentary quotas
32Gemini API Proxyhttps://gemini-proxy.com🔓✌🎉🚀Google Gemini access with OpenAI-compatible interface and free credits
33DeepSeek API Aggregatorhttps://deepseek-aggregator.com🔓💪🎉🚀Bundles DeepSeek model family with complimentary testing quota
34Hugging Face Model Proxyhttps://huggingface.co/inference-api🔓💪🎉🚀Access open-source models such as Llama 3 with free quota and enterprise support
35AI21 Labs Official Proxyhttps://studio.ai21.com💰✌💪🎉Supports Jurassic-2 models for advanced NLP workloads
36Cohere API Proxyhttps://cohere.ai💰✌💪🎉Enterprise-grade APIs for text generation, embeddings, and classification
37AI API Aggregation Platformhttps://api.ai-aggregator.com🔓✌💪🎉🚀Unified interface with built-in load balancing across multiple models
38AI.LShttps://ai.ls🆓✌Minimalist endpoint offering free anonymous GPT-3.5 calls
39Simple APIhttps://jeniya.top🔓✌💪🎉🎁¥100 signup credit with support for Claude/GPT-4o multi-model access
40OpenAI120https://openai120.com🔓✌🎁$3 signup credit with official OpenAI pricing
41DuckAGIhttps://duckagi.com💰✌🎉🚀Multimodal GPT-4o/Sora support, ideal for AI art workflows
42Aihubmixhttps://aihubmix.com💰🎉Aggregator for domestic models such as Wenxin Yiyan and Qwen
43WokaAIhttps://wokaai.comDual-network routing for improved stability
44azapihttps://azapi.com.cn💰Discounts available for long-term usage
45ClaudeAPIhttps://claudeapi.io💪🚀✔Official Anthropic partner with document/file parsing support
46Gala APIhttps://galaapi.com🎉🚀High-speed dedicated channel for Google Gemini
47Google AI Studiohttps://ai.google.dev🆓🌎✔Gemini series fully free but requires international network access
48OpenAI Data Sharing Programhttps://platform.openai.com🔓✌🌎Enable data sharing to earn up to 1M free tokens per day
49Mistral AI La Plateformehttps://platform.mistral.ai🔓🎉🌎Official platform with free trial credits (rate limited)
50Coherehttps://cohere.com🔓🎉🌎Trial key after signup; free calls with rate limits
51ModelScopehttps://modelscope.cn🔓🎉🚩Aggregates DeepSeek/Qwen models with free trials and downloads
52ByteDance Ark Collaboration Rewardshttps://www.volcengine.com/product/ark🔓🎉Participating teams receive 500K tokens per model each day
53BigModel (Zhipu)https://open.bigmodel.cn🆓🎉GLM-4-Flash API is completely free with 128K context
54InternLMhttps://internlm.intern-ai.org.cn🆓🎉Official free API access with direct invocation
55GitHub Modelshttps://docs.github.com/github-models🔓✌🎉🌎Azure-hosted service with limited complimentary quota
56OpenRouter (free tier)https://openrouter.ai🔓💪✌🎉🌎✔Free models allow ≤50 calls/day; balance ≥$10 increases limit to 1000
57Chuteshttps://chutes.ai🔓🎉Up to 200 free requests per day on select models, supports DeepSeek
58Groq Cloudhttps://groq.com/groqcloud🔓🎉🌎Apply for a free API key, OpenAI-compatible endpoints with extreme speed
59Cerebras Inferencehttps://inference.cerebras.ai🔓🎉🌎🚀1M free tokens per day and up to 450+ tok/s inference throughput
60Infini GenStudiohttps://cloud.infini-ai.com/genstudio🆓🎉DeepSeek R1/V3 full-power tokens are free—no invite code required
--- ## 📖 How to Use 1. 🔑 Get the API key: register on the target platform and copy it from your dashboard 2. ⚙ Configure the endpoint: paste the API base URL into a supported application 3. 🤖 Choose models: switch between Claude / GPT / Gemini / DeepSeek based on availability 4. 📊 Monitor usage: enable built-in quota limits or alerts inside your client of choice --- ## 🙌 Contribution Guide We welcome: * ✨ New API providers (must remain stable for ≥ 3 days) * 🧰 Additional tutorials (configuration screenshots, screen recordings) * 🧪 Verification scripts (automated detection of inactive platforms) * 🌍 Translations (English, Japanese, Korean, etc.) > Please submit a Pull Request or open an Issue—we respond as quickly as possible! --- ## ❌ Inactive Platforms
📛 Click to view inactive platforms | # | Name | Link | Status | | - | ------ | ---------------------------------------- | ------------- | | 1 | 464888 | [api.464888.xyz](https://api.464888.xyz) | ❌ Unavailable | > If you discover another inactive platform, feel free to open an Issue!
--- ## ⚖️ Disclaimer * We do not store any API keys, nor do we offer proxy or relay services. * All platforms are sourced from the public internet; use them at your own risk. * The authors are not responsible for any loss caused by third-party services. --- ## 🙏 Special Thanks Many thanks to zenmux for providing API platform support! [Register now and use the promo code](https://zenmux.ai/invite/U1QU1H) Many thanks to chat01 for providing service support! [Visit chat01 and use the referral code](https://chat01.ai/?ref=j45ikbTa) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") --- [![Star History](https://api.star-history.com/svg?repos=TechnologyStar/Openai-Claude-Deepseek-API-provider&type=Date)](https://star-history.com/#TechnologyStar/Openai-Claude-Deepseek-API-provider&Date) Made with ❤️ by [TechnologyStar](https://github.com/TechnologyStar) ================================================ FILE: fr.md ================================================ # 🌐 Openai / Claude / Deepseek API Provider [![Last Commit](https://img.shields.io/github/last-commit/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider) [![License](https://img.shields.io/github/license/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/blob/main/LICENSE) > 🏗️ Liste sélectionnée de plateformes tierces fournissant des API **OpenAI / Claude / DeepSeek** pour l'apprentissage, la recherche et un usage non commercial.

中文版 English Русская версия Version Française

--- > ⚠️ **Instructions d'utilisation** > > Ce projet est gratuit et à but non lucratif. Toute utilisation illégale est strictement interdite. > **Nous n'incluons pas les sites internes des forums IA. Si un site a été ajouté par erreur, veuillez nous contacter pour son retrait. Après évaluation, nous compenserons les erreurs de référencement vérifiées.** > * Respectez les [conditions d'utilisation d'OpenAI](https://openai.com/policies/terms-of-use) > * Conformez-vous aux [mesures provisoires pour l'administration des services d'IA générative](http://www.cac.gov.cn/2023-07/13/c_1690898327029107.htm)—**ne fournissez pas de services d'IA générative non enregistrés au public en Chine** > * Site officiel : [Openai / Claude / Deepseek API Provider](https://d706445b-7658-4708-bb08-bac6c5a775ad-00-2z2hsdckl4fie.riker.replit.dev/) --- ## 🚀 Présentation du projet * 📌 Collecte et vérifie les fournisseurs d'API tiers disponibles sur Internet (certains sont gratuits) * 🔧 Sans inscription / accès en un clic / support multi-modèles (OpenAI, Claude, DeepSeek, etc.) * 🔒 Les sites sont répertoriés à titre indicatif uniquement—**n'entrez jamais d'informations personnelles sensibles** > 💡 Si ce projet vous est utile, n'hésitez pas à laisser une étoile 🌟 --- ## 🎁 Légende des étiquettes | Étiquette | Signification | | --------- | -------------------------------------------------- | | 🆓 | Entièrement gratuit | | 🔓 | Quota gratuit disponible | | 💰 | Paiement requis | | 💪 | Support de Claude dernière version | | ✌ | Support d'OpenAI dernière version | | 🎉 | Autres modèles supportés (ex. DeepSeek) | | 🌎 | Nécessite un accès réseau international | | 🎁 | Bonus de recharge ou crédits promotionnels | | 🚀 | Support de haute concurrence | | 😆 | Récompenses de connexion quotidienne | | 🚩 | Plateforme enregistrée / conforme ICP | | ✔ | Authenticité vérifiée manuellement | --- ## 📱 Applications compatibles
📦 Cliquez pour voir la liste des applications compatibles ### ✅ [Cherry Studio](https://github.com/CherryHQ/cherry-studio) > Client multiplateforme desktop + mobile intégrant les services cloud d'IA grand public et les modèles locaux. ### ✅ [Plugin ChatGPT Friends (uTools)](https://u.tools/plugins/detail/ChatGPT.%E5%A5%BD%E5%8F%8B/) > Plugin de chat IA desktop avec préréglages de rôles, multi-modèles et gestion multi-sessions. ### ✅ [ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) > Interface web open source pour ChatGPT avec support de clé API et collaboration multi-utilisateurs. ### ✅ [LobeChat](https://github.com/lobehub/lobe-chat) > Framework de chat IA web avec vision, parole et changement de modèle. ### ✅ [BotGem](https://botgem.com/) > Design mobile-first avec conversations vocales et système de compagnon IA. ### ✅ [ChatBox](https://github.com/Bin-Huang/chatbox) > Compatible iOS, Android et desktop avec une interface moderne et complète. ### ✅ [FastGPT](https://github.com/labring/FastGPT) > Intégration base de connaissances + flux de travail—idéal pour la formation en entreprise/support client. ### ✅ [AnythingLLM](https://github.com/Mintplex-Labs/anything-llm) > Support du déploiement local et des extensions de plugin pour les utilisateurs soucieux de la confidentialité.
--- ## 🌐 Fournisseurs d'API tiers
#PlateformeLienÉtiquettesRemarques
1chat01 (recommandé, code d'invitation)https://chat01.ai🔓✌🎁💰✔Support niveau Pro, corrige les réponses dégradées, 2 crédits gratuits par jour, chat + API sur un même site
2SiliconFlow (entreprise)https://cloud.siliconflow.cn🔓🎉🚀🚩✔Service Huawei Cloud Ascend avec bonus de 14 ¥ à l'inscription
3zenmux (recommandé, Gemini 3 gratuit + images)https://zenmux.ai🔓✌🎁💰Accès gratuit Gemini 3 Pro, premier agrégateur offrant des garanties de compensation
4PoloAPIhttps://poloai.top🔓💪✌🎉🎁💰Les nouveaux utilisateurs reçoivent 0,3 $ de crédit ; agrège les modèles Claude/Grok/OpenAI
5OAIProhttps://api.oaipro.com💰✌💪Tarification officielle, connectivité directe stable, supporte les API OpenAI et Claude
6VoAPIhttps://demo.voapi.top🆓😆💪✌Site entièrement à but non lucratif avec réinitialisation du solde chaque jour
7inscopilot (recommandé)https://instcopilot-api.com✌🎉😆🚀Bonus de 5 $, stable et abordable, supporte les cartes de crédit
8V3 API (hybride)https://api.v3.cm🚀🔓💪🎁🎉✌Bonus de 0,2 $, haute concurrence, recharge à 30 %, nombreux modèles
9V3 API (relais officiel)https://gf.gpt.ge🚀🌹🔓💪Bonus de 0,2 $, haute concurrence, recharge à 60 % de la valeur nominale
10openai-hkhttps://openai-hk.com🆓🔓🎉✌💪🚀Récompense d'inscription de 1 ¥, concurrence ultra-élevée, inclut l'édition publique GPT-3.5
11ChatGPT API Faucethttps://faucet.openkey.cloud🆓1 $ de crédit gratuit valable 3 jours
12ChatGPT API caritative gratuiteGitHub🆓API communautaire entièrement gratuite
13GPT-API-freeGitHub🆓💪Supporte GPT-4 avec trois requêtes gratuites par jour
14openkeyhttps://openkey.cloud🔓💪✌🚀Crédit bonus de 0,2 $ avec support multi-thread
15gptgod.onlinehttps://gptgod.online💪✌🎁💰🎉😆Paiement à l'utilisation avec système de crédit flexible
16m3.ckit.goldhttps://m3.ckit.gold💰💪✌3 RMB par USD, bonus d'inscription de 0,1 $
17iaicnnhttps://aicnn.cn💪✌🎁💰🎉Support API legacy disponible ; les services ont migré
18goapi.gptnb.aihttps://goapi.gptnb.ai💪✌🎁💰🎉
19api.aigc369.comhttps://api.aigc369.com💪✌🎁💰🎉
20api.mjdjourney.cnhttps://api.mjdjourney.cn💪✌🎁💰🎉
21api.bltcy.aihttps://api.bltcy.ai💪✌🎁💰🎉
224Z API Relayhttps://zzzzapi.com🔓✌💪🎉🚀Supporte GPT-4o et Claude 3.5 avec crédit bonus de 0,2 pour les nouveaux utilisateurs
23Jianyi API Relayhttps://jeniya.top🔓✌💪🎉🚀Agrège de nombreux modèles, accès domestique illimité, crédit de test de 100 ¥ à l'inscription
24CloseAIhttps://closeai-asia.com💰✌💪🎉🚀Proxy de niveau entreprise pour GPT-4o et Claude 3.5 avec support technique en chinois
25Yunjing AIhttps://api.atalk-ai.com🔓✌💪🎉🚀Agrège ChatGPT, Claude, Wenxin Yiyan ; bon d'essai de 5 ¥ pour nouveaux utilisateurs
26ModelBridgehttps://model-bridge.okeeper.com🔓✌💪🎉🚀Proxy domestique gratuit compatible avec les API OpenAI et les modèles chinois
27UiUi APIhttps://sg.uiuiapi.com🔓✌💪🎉🚀Supporte Claude 4, Gemini et autres modèles au format compatible OpenAI
28Old Zhang API Relayhttps://api.laozhang.ai🔓✌💪🎉🚀Supporte Claude 3 et GPT-4o, crédit de 20 ¥ pour nouveaux utilisateurs, paiements Alipay/WeChat
29Haijing AI Aggregatorhttps://ai.atalk-ai.com🔓✌💪🎉🚀Plateforme domestique enregistrée ICP avec API multi-modèles unifiée
30One APIhttps://one-api.ai🔓✌💪🎉🚀Gestionnaire d'interface open source pour distribution multi-modèles et auto-hébergement
31OpenRouterhttps://openrouter.ai🔓✌💪🎉🚀Supporte 293+ modèles (OpenAI, Claude, Gemini) avec quotas gratuits
32Gemini API Proxyhttps://gemini-proxy.com🔓✌🎉🚀Accès Google Gemini avec interface compatible OpenAI et crédits gratuits
33DeepSeek API Aggregatorhttps://deepseek-aggregator.com🔓💪🎉🚀Regroupe la famille de modèles DeepSeek avec quota de test gratuit
34Hugging Face Model Proxyhttps://huggingface.co/inference-api🔓💪🎉🚀Accès aux modèles open source comme Llama 3 avec quota gratuit et support entreprise
35AI21 Labs Official Proxyhttps://studio.ai21.com💰✌💪🎉Supporte les modèles Jurassic-2 pour charges de travail NLP avancées
36Cohere API Proxyhttps://cohere.ai💰✌💪🎉API de niveau entreprise pour génération de texte, embeddings et classification
37AI API Aggregation Platformhttps://api.ai-aggregator.com🔓✌💪🎉🚀Interface unifiée avec équilibrage de charge intégré entre plusieurs modèles
38AI.LShttps://ai.ls🆓✌Point de terminaison minimaliste offrant des appels GPT-3.5 anonymes gratuits
39Simple APIhttps://jeniya.top🔓✌💪🎉🎁Crédit d'inscription de 100 ¥ avec support pour accès multi-modèles Claude/GPT-4o
40OpenAI120https://openai120.com🔓✌🎁Crédit d'inscription de 3 $ avec tarification officielle OpenAI
41DuckAGIhttps://duckagi.com💰✌🎉🚀Support multimodal GPT-4o/Sora, idéal pour workflows d'art IA
42Aihubmixhttps://aihubmix.com💰🎉Agrégateur pour modèles domestiques tels que Wenxin Yiyan et Qwen
43WokaAIhttps://wokaai.comRoutage bi-réseau pour stabilité améliorée
44azapihttps://azapi.com.cn💰Remises disponibles pour utilisation à long terme
45ClaudeAPIhttps://claudeapi.io💪🚀✔Partenaire officiel Anthropic avec support d'analyse de documents/fichiers
46Gala APIhttps://galaapi.com🎉🚀Canal dédié haute vitesse pour Google Gemini
47Google AI Studiohttps://ai.google.dev🆓🌎✔Série Gemini entièrement gratuite mais nécessite un accès réseau international
48OpenAI Data Sharing Programhttps://platform.openai.com🔓✌🌎Activez le partage de données pour gagner jusqu'à 1M de tokens gratuits par jour
49Mistral AI La Plateformehttps://platform.mistral.ai🔓🎉🌎Plateforme officielle avec crédits d'essai gratuits (limité en débit)
50Coherehttps://cohere.com🔓🎉🌎Clé d'essai après inscription ; appels gratuits avec limites de débit
51ModelScopehttps://modelscope.cn🔓🎉🚩Agrège modèles DeepSeek/Qwen avec essais et téléchargements gratuits
52ByteDance Ark Collaboration Rewardshttps://www.volcengine.com/product/ark🔓🎉Les équipes participantes reçoivent 500K tokens par modèle chaque jour
53BigModel (Zhipu)https://open.bigmodel.cn🆓🎉L'API GLM-4-Flash est entièrement gratuite avec contexte 128K
54InternLMhttps://internlm.intern-ai.org.cn🆓🎉Accès API officiel gratuit avec invocation directe
55GitHub Modelshttps://docs.github.com/github-models🔓✌🎉🌎Service hébergé Azure avec quota gratuit limité
56OpenRouter (niveau gratuit)https://openrouter.ai🔓💪✌🎉🌎✔Les modèles gratuits autorisent ≤50 appels/jour ; solde ≥10 $ augmente la limite à 1000
57Chuteshttps://chutes.ai🔓🎉Jusqu'à 200 requêtes gratuites par jour sur certains modèles, supporte DeepSeek
58Groq Cloudhttps://groq.com/groqcloud🔓🎉🌎Demandez une clé API gratuite, points de terminaison compatibles OpenAI avec vitesse extrême
59Cerebras Inferencehttps://inference.cerebras.ai🔓🎉🌎🚀1M de tokens gratuits par jour et débit d'inférence jusqu'à 450+ tok/s
60Infini GenStudiohttps://cloud.infini-ai.com/genstudio🆓🎉Les tokens DeepSeek R1/V3 pleine puissance sont gratuits—aucun code d'invitation requis
--- ## 📖 Guide d'utilisation 1. 🔑 Obtenez la clé API : inscrivez-vous sur la plateforme cible et copiez-la depuis votre tableau de bord 2. ⚙ Configurez le point de terminaison : collez l'URL de base de l'API dans une application compatible 3. 🤖 Choisissez les modèles : basculez entre Claude / GPT / Gemini / DeepSeek selon la disponibilité 4. 📊 Surveillez l'utilisation : activez les limites de quota intégrées ou les alertes dans votre client de choix --- ## 🙌 Guide de contribution Nous accueillons : * ✨ Nouveaux fournisseurs d'API (doivent rester stables pendant ≥ 3 jours) * 🧰 Tutoriels supplémentaires (captures d'écran de configuration, enregistrements d'écran) * 🧪 Scripts de vérification (détection automatisée des plateformes inactives) * 🌍 Traductions (anglais, japonais, coréen, etc.) > Veuillez soumettre une Pull Request ou ouvrir une Issue—nous répondons aussi rapidement que possible ! --- ## ❌ Plateformes inactives
📛 Cliquez pour voir les plateformes inactives | # | Nom | Lien | Statut | | - | ------ | ---------------------------------------- | -------------- | | 1 | 464888 | [api.464888.xyz](https://api.464888.xyz) | ❌ Indisponible | > Si vous découvrez une autre plateforme inactive, n'hésitez pas à ouvrir une Issue !
--- ## ⚖️ Avertissement * Nous ne stockons aucune clé API et n'offrons pas de services de proxy ou de relais. * Toutes les plateformes proviennent de l'Internet public ; utilisez-les à vos propres risques. * Les auteurs ne sont pas responsables des pertes causées par des services tiers. --- ## 🙏 Remerciements spéciaux Un grand merci à zenmux pour avoir fourni le support de plateforme API ! [Inscrivez-vous maintenant et utilisez le code promo](https://zenmux.ai/invite/U1QU1H) Un grand merci à chat01 pour avoir fourni le support de service ! [Visitez chat01 et utilisez le code de parrainage](https://chat01.ai/?ref=j45ikbTa) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") --- [![Star History](https://api.star-history.com/svg?repos=TechnologyStar/Openai-Claude-Deepseek-API-provider&type=Date)](https://star-history.com/#TechnologyStar/Openai-Claude-Deepseek-API-provider&Date) Réalisé avec ❤️ par [TechnologyStar](https://github.com/TechnologyStar) ================================================ FILE: ru.md ================================================ # 🌐 Поставщики API Openai / Claude / Deepseek [![Last Commit](https://img.shields.io/github/last-commit/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider) [![License](https://img.shields.io/github/license/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/blob/main/LICENSE) > 🏗️ Курированный список сторонних платформ, предоставляющих API **OpenAI / Claude / DeepSeek** для обучения, исследований и некоммерческого использования.

中文版 English Русская версия Version Française

--- > ⚠️ **Инструкция по использованию** > > Проект бесплатный и некоммерческий. Любое незаконное использование запрещено. > **Мы не включаем закрытые сайты AI-форумов. Если ресурс добавлен по ошибке, свяжитесь с нами для удаления. После проверки мы компенсируем подтверждённые неверные добавления.** > * Соблюдайте [условия использования OpenAI](https://openai.com/policies/terms-of-use) > * Соблюдайте [Временные правила управления сервисами генеративного ИИ](http://www.cac.gov.cn/2023-07/13/c_1690898327029107.htm) — **не предоставляйте незарегистрированные сервисы генеративного ИИ пользователям в Китае** > * Официальный сайт: [Openai / Claude / Deepseek API Provider](https://d706445b-7658-4708-bb08-bac6c5a775ad-00-2z2hsdckl4fie.riker.replit.dev/) --- ## 🚀 Описание проекта * 📌 Собирает и проверяет сторонние платформы API в интернете (часть из них бесплатные) * 🔧 Без регистрации / подключение в один клик / поддержка нескольких моделей (OpenAI, Claude, DeepSeek и др.) * 🔒 Сайты приведены только для справки — **не вводите конфиденциальные данные** > 💡 Если проект оказался полезным, поставьте звезду 🌟 --- ## 🎁 Обозначения меток | Метка | Значение | | ----- | ------------------------------------------ | | 🆓 | Полностью бесплатно | | 🔓 | Есть бесплатный лимит | | 💰 | Требуется оплата | | 💪 | Поддержка последних моделей Claude | | ✌ | Поддержка последних моделей OpenAI | | 🎉 | Поддерживаются другие модели (например, DeepSeek) | | 🌎 | Нужен международный доступ в интернет | | 🎁 | Бонус при пополнении или промокод | | 🚀 | Поддерживается высокая нагрузка | | 😆 | Ежедневные бонусы за вход | | 🚩 | Платформа с ICP/официальной регистрацией | | ✔ | Подлинность вручную подтверждена | --- ## 📱 Рекомендуемые приложения
📦 Нажмите, чтобы увидеть список совместимых приложений ### ✅ [Cherry Studio](https://github.com/CherryHQ/cherry-studio) > Кроссплатформенный клиент (desktop + mobile), объединяющий облачные ИИ-сервисы и локальные модели. ### ✅ [Плагин ChatGPT Friends (uTools)](https://u.tools/plugins/detail/ChatGPT.%E5%A5%BD%E5%8F%8B/) > Настольный плагин для интеллекта-чата с ролями, несколькими моделями и сессиями. ### ✅ [ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) > Open-source веб-интерфейс ChatGPT с поддержкой API-ключей и совместной работы. ### ✅ [LobeChat](https://github.com/lobehub/lobe-chat) > Веб-фреймворк с поддержкой визуальных/голосовых режимов и переключением моделей. ### ✅ [BotGem](https://botgem.com/) > Mobile-first ассистент с голосовыми диалогами и системой ИИ-друзей. ### ✅ [ChatBox](https://github.com/Bin-Huang/chatbox) > Клиент для iOS/Android/desktop с современным и полным интерфейсом. ### ✅ [FastGPT](https://github.com/labring/FastGPT) > База знаний + workflow, подходит для корпоративного обучения и поддержки. ### ✅ [AnythingLLM](https://github.com/Mintplex-Labs/anything-llm) > Локальный деплой с поддержкой плагинов для пользователей, ценящих приватность.
--- ## 🌐 Третьи поставщики API
#ПлатформаСсылкаМеткиОписание
1chat01 (рекомендовано, с кодом)https://chat01.ai🔓✌🎁💰✔Поддерживает тариф Pro, исправляет деградацию ответов, 2 бесплатных кредита в день, чат + API
2SiliconFlow (для бизнеса)https://cloud.siliconflow.cn🔓🎉🚀🚩✔Сервис Huawei Cloud Ascend, бонус 14 ¥ при регистрации
3zenmux (рекомендовано)https://zenmux.ai🔓✌🎁💰Бесплатный Gemini 3 Pro, первый агрегатор с гарантиями компенсаций
4PoloAPIhttps://poloai.top🔓💪✌🎉🎁💰Новым пользователям 0,3 $; агрегирует Claude/Grok/OpenAI
5OAIProhttps://api.oaipro.com💰✌💪Официальные тарифы, стабильное прямое соединение, поддержка OpenAI и Claude
6VoAPIhttps://demo.voapi.top🆓😆💪✌Полностью благотворительный сайт, баланс обнуляется ежедневно
7inscopilot (рекомендовано)https://instcopilot-api.com✌🎉😆🚀Бонус 5 $, стабильный и недорогой, принимает банковские карты
8V3 API (гибрид)https://api.v3.cm🚀🔓💪🎁🎉✌Бонус 0,2 $, высокая нагрузка, пополнение по цене 30 %, десятки моделей
9V3 API (официальный релей)https://gf.gpt.ge🚀🌹🔓💪Бонус 0,2 $, высокая нагрузка, пополнение по 60 % от номинала
10openai-hkhttps://openai-hk.com🆓🔓🎉✌💪🚀Бонус 1 ¥, сверхвысокая нагрузка, есть публичный GPT-3.5
11ChatGPT API Faucethttps://faucet.openkey.cloud🆓1 $ бесплатного кредита, действует 3 дня
12Благотворительный бесплатный ChatGPT APIGitHub🆓Полностью бесплатное общественное API
13GPT-API-freeGitHub🆓💪Поддерживает GPT-4, три бесплатных запроса в день
14openkeyhttps://openkey.cloud🔓💪✌🚀Бонус 0,2 $, поддержка мультипоточности
15gptgod.onlinehttps://gptgod.online💪✌🎁💰🎉😆Оплата по запросам, гибкая система кредитов
16m3.ckit.goldhttps://m3.ckit.gold💰💪✌3 RMB за доллар, бонус 0,1 $ при регистрации
17iaicnnhttps://aicnn.cn💪✌🎁💰🎉Доступна поддержка старых API, сервис частично перенесён
18goapi.gptnb.aihttps://goapi.gptnb.ai💪✌🎁💰🎉
19api.aigc369.comhttps://api.aigc369.com💪✌🎁💰🎉
20api.mjdjourney.cnhttps://api.mjdjourney.cn💪✌🎁💰🎉
21api.bltcy.aihttps://api.bltcy.ai💪✌🎁💰🎉
224Z API Relayhttps://zzzzapi.com🔓✌💪🎉🚀Поддержка GPT-4o и Claude 3.5, для новичков бонус 0,2
23Jianyi API Relayhttps://jeniya.top🔓✌💪🎉🚀Много моделей, неограниченный доступ из Китая, бонус 100 ¥
24CloseAIhttps://closeai-asia.com💰✌💪🎉🚀Прокси уровня enterprise для GPT-4o и Claude 3.5, китайский саппорт
25Yunjing AIhttps://api.atalk-ai.com🔓✌💪🎉🚀Агрегатор ChatGPT, Claude, Wenxin Yiyan; купон 5 ¥
26ModelBridgehttps://model-bridge.okeeper.com🔓✌💪🎉🚀Бесплатный отечественный прокси, совместим с OpenAI API и китайскими моделями
27UiUi APIhttps://sg.uiuiapi.com🔓✌💪🎉🚀Поддерживает Claude 4, Gemini и др., формат совместим с OpenAI
28Old Zhang API Relayhttps://api.laozhang.ai🔓✌💪🎉🚀Claude 3 и GPT-4o, бонус 20 ¥, оплата Alipay/WeChat
29Haijing AI Aggregatorhttps://ai.atalk-ai.com🔓✌💪🎉🚀Домашняя платформа с ICP, единый API для множества моделей
30One APIhttps://one-api.ai🔓✌💪🎉🚀Open-source менеждер интерфейсов для мульти-моделей и self-host
31OpenRouterhttps://openrouter.ai🔓✌💪🎉🚀Поддерживает 293+ моделей (OpenAI, Claude, Gemini), выдаёт бесплатные квоты
32Gemini API Proxyhttps://gemini-proxy.com🔓✌🎉🚀Доступ к Google Gemini через OpenAI-совместимый интерфейс, есть бесплатный лимит
33DeepSeek API Aggregatorhttps://deepseek-aggregator.com🔓💪🎉🚀Объединяет линейку DeepSeek и выдаёт тестовый кредит
34Hugging Face Model Proxyhttps://huggingface.co/inference-api🔓💪🎉🚀Доступ к открытым моделям (Llama 3 и др.) с бесплатным лимитом и Enterprise-сервисом
35AI21 Labs Official Proxyhttps://studio.ai21.com💰✌💪🎉Jurassic-2 для продвинутых NLP-задач
36Cohere API Proxyhttps://cohere.ai💰✌💪🎉Корпоративные API для генерации текста, эмбеддингов и классификации
37AI API Aggregation Platformhttps://api.ai-aggregator.com🔓✌💪🎉🚀Единый интерфейс с балансировкой нагрузки между моделями
38AI.LShttps://ai.ls🆓✌Минималистичное API с бесплатным анонимным GPT-3.5
39Simple APIhttps://jeniya.top🔓✌💪🎉🎁100 ¥ за регистрацию, поддержка Claude/GPT-4o
40OpenAI120https://openai120.com🔓✌🎁3 $ бонуса, цены как у OpenAI
41DuckAGIhttps://duckagi.com💰✌🎉🚀Мультимодальность GPT-4o/Sora, удобно для AI-арта
42Aihubmixhttps://aihubmix.com💰🎉Агрегатор отечественных моделей (Wenxin Yiyan, Qwen)
43WokaAIhttps://wokaai.comДвойные маршруты для большей стабильности
44azapihttps://azapi.com.cn💰Скидки для долгосрочного использования
45ClaudeAPIhttps://claudeapi.io💪🚀✔Официальный партнёр Anthropic, поддержка анализа документов
46Gala APIhttps://galaapi.com🎉🚀Высокоскоростной канал специально для Google Gemini
47Google AI Studiohttps://ai.google.dev🆓🌎✔Линейка Gemini полностью бесплатна, но нужен международный доступ
48OpenAI Data Sharing Programhttps://platform.openai.com🔓✌🌎Включите обмен данными и получайте до 1M бесплатных токенов в день
49Mistral AI La Plateformehttps://platform.mistral.ai🔓🎉🌎Официальная платформа с бесплатным пробным лимитом (есть rate limit)
50Coherehttps://cohere.com🔓🎉🌎Trial-ключ после регистрации, бесплатные вызовы с ограничением скорости
51ModelScopehttps://modelscope.cn🔓🎉🚩Агрегатор DeepSeek/Qwen, бесплатные тесты и загрузки
52ByteDance Ark Collaboration Rewardshttps://www.volcengine.com/product/ark🔓🎉Участникам программы выдаётся по 500k токенов на модель ежедневно
53BigModel (Zhipu)https://open.bigmodel.cn🆓🎉GLM-4-Flash полностью бесплатен, поддерживает 128K контекст
54InternLMhttps://internlm.intern-ai.org.cn🆓🎉Официальный бесплатный API, можно вызывать напрямую
55GitHub Modelshttps://docs.github.com/github-models🔓✌🎉🌎Хостится в Azure, предоставляет ограниченный бесплатный лимит
56OpenRouter (free tier)https://openrouter.ai🔓💪✌🎉🌎✔Бесплатные модели ≤50 запросов/день; при балансе ≥10 $ лимит до 1000
57Chuteshttps://chutes.ai🔓🎉До 200 бесплатных запросов в сутки на отдельных моделях, поддержка DeepSeek
58Groq Cloudhttps://groq.com/groqcloud🔓🎉🌎Заявка на бесплатный API-ключ, OpenAI-совместимые конечные точки с высокой скоростью
59Cerebras Inferencehttps://inference.cerebras.ai🔓🎉🌎🚀1M бесплатных токенов ежедневно и скорость вывода до 450+ ток/с
60Infini GenStudiohttps://cloud.infini-ai.com/genstudio🆓🎉DeepSeek R1/V3 full-power токены бесплатны, без инвайт-кодов
--- ## 📖 Руководство по использованию 1. 🔑 Получите API-ключ: зарегистрируйтесь на выбранной платформе и скопируйте его из кабинета 2. ⚙ Настройте endpoint: вставьте базовый URL API в поддерживаемое приложение 3. 🤖 Выберите модели: переключайтесь между Claude / GPT / Gemini / DeepSeek по доступности 4. 📊 Следите за потреблением: включайте лимиты или напоминания внутри клиента --- ## 🙌 Как помочь проекту Мы приветствуем: * ✨ Добавление новых поставщиков API (стабильная работа ≥ 3 дней) * 🧰 Туториалы (скриншоты настроек, запись экрана) * 🧪 Скрипты проверки (автоматическое выявление неактивных площадок) * 🌍 Переводы (английский, японский, корейский и др.) > Отправляйте Pull Request или Issue — мы постараемся ответить как можно быстрее! --- ## ❌ Неактивные платформы
📛 Нажмите, чтобы увидеть недоступные площадки | # | Название | Ссылка | Статус | | - | -------- | ---------------------------------------- | ------------ | | 1 | 464888 | [api.464888.xyz](https://api.464888.xyz) | ❌ Недоступно | > Нашли ещё неработающий сайт? Сообщите через Issue!
--- ## ⚖️ Отказ от ответственности * Мы не храним API-ключи и не предоставляем прокси или ретрансляцию. * Все площадки найдены в открытом интернете — используйте на свой страх и риск. * Авторы не несут ответственности за убытки, вызванные сторонними сервисами. --- ## 🙏 Особая благодарность Большое спасибо zenmux за помощь с API-платформой! [Зарегистрируйтесь и используйте промокод](https://zenmux.ai/invite/U1QU1H) Спасибо chat01 за поддержку сервиса! [Посетите chat01 и используйте реферальный код](https://chat01.ai/?ref=j45ikbTa) [![Powered by DartNode](https://dartnode.com/branding/DN-Open-Source-sm.png)](https://dartnode.com "Powered by DartNode - Free VPS for Open Source") --- [![Star History](https://api.star-history.com/svg?repos=TechnologyStar/Openai-Claude-Deepseek-API-provider&type=Date)](https://star-history.com/#TechnologyStar/Openai-Claude-Deepseek-API-provider&Date) Сделано с ❤️ командой [TechnologyStar](https://github.com/TechnologyStar) ================================================ FILE: website/README-HTML.md ================================================ # 静态HTML多语言版本 / Static HTML Multilingual Version ## 📁 文件说明 / File Description 本目录包含完全独立的多语言静态HTML页面,无需Node.js环境即可直接在浏览器中打开使用。 This directory contains fully standalone multilingual static HTML pages that can be opened directly in a browser without requiring a Node.js environment. ### 文件列表 / File List - **index.html** - 自动语言检测入口页面 / Auto language detection entry page - **index.zh-CN.html** - 中文版本(底本)/ Chinese version (base) - **index.en.html** - 英文版本 / English version - **index.ru.html** - 俄语版本 / Russian version - **index.fr.html** - 法语版本 / French version ## 🌟 特性 / Features ### ✅ 完全自包含 / Fully Self-Contained - 所有样式直接内嵌在HTML中 - 无需外部CSS/JS文件 - 无需构建工具或服务器 - 可直接用浏览器打开 All styles are embedded directly in the HTML No external CSS/JS files required No build tools or server needed Can be opened directly with a browser ### 🌍 多语言支持 / Multilingual Support - 🇨🇳 中文 (Chinese) - 底本版本 - 🇬🇧 English - Based on Chinese content - 🇷🇺 Русский (Russian) - Based on Chinese content - 🇫🇷 Français (French) - Based on Chinese content ### 📊 完整数据 / Complete Data - 60+ API提供商信息 - 8个推荐应用 - 标签图例说明 - 使用指南 - 贡献指南 60+ API providers information 8 recommended applications Tag legend explanations Usage guide Contribution guide ### 🎨 现代设计 / Modern Design - 渐变背景色 - 毛玻璃效果 - 响应式布局 - 移动端适配 - 悬停动画效果 Gradient backgrounds Glassmorphism effects Responsive layout Mobile-friendly Hover animations ## 🚀 使用方法 / Usage ### 方法1:直接打开 / Method 1: Direct Opening ```bash # 在浏览器中打开任意HTML文件 # Open any HTML file in a browser # Windows start index.html # Mac open index.html # Linux xdg-open index.html ``` ### 方法2:本地服务器 / Method 2: Local Server ```bash # Python 3 python3 -m http.server 8000 # Python 2 python -m SimpleHTTPServer 8000 # Node.js (如果已安装 / if installed) npx http-server -p 8000 # 然后访问 / Then visit # http://localhost:8000 ``` ### 方法3:在线部署 / Method 3: Online Deployment 可以直接将HTML文件部署到以下平台: You can directly deploy HTML files to the following platforms: - **GitHub Pages** - **Netlify** - **Vercel** - **Cloudflare Pages** - **GitLab Pages** - 任何支持静态文件的主机 / Any static file hosting ## 🔄 与React版本的关系 / Relationship with React Version ### React版本 (client/) / React Version - 需要Node.js环境和构建 - 支持更复杂的交互功能 - 使用TanStack Query进行数据获取 - 支持客户端路由 - 适合开发和扩展功能 Requires Node.js environment and build Supports more complex interactive features Uses TanStack Query for data fetching Supports client-side routing Suitable for development and extending features ### HTML版本 (当前目录) / HTML Version (Current Directory) - 纯静态文件,无需构建 - 完全自包含,易于部署 - 可直接分享和使用 - 适合快速查看和分享 - 适合无法运行Node.js的环境 Pure static files, no build required Fully self-contained, easy to deploy Can be directly shared and used Suitable for quick viewing and sharing Suitable for environments without Node.js ## 📝 内容更新 / Content Updates 如需更新内容,请遵循以下步骤: To update content, follow these steps: 1. **更新中文版本(底本)**:编辑 `index.zh-CN.html` Update Chinese version (base): Edit `index.zh-CN.html` 2. **同步到其他语言**:根据中文版本更新其他语言文件 Sync to other languages: Update other language files based on Chinese version 3. **保持一致性**:确保所有语言版本的数据条目数量一致 Maintain consistency: Ensure all language versions have the same number of data entries ## 🎯 浏览器兼容性 / Browser Compatibility 支持所有现代浏览器: Supports all modern browsers: - ✅ Chrome/Edge 90+ - ✅ Firefox 88+ - ✅ Safari 14+ - ✅ Opera 76+ ## 📱 移动端支持 / Mobile Support 所有HTML页面都经过优化,支持移动设备: All HTML pages are optimized for mobile devices: - 响应式设计 / Responsive design - 触摸友好 / Touch-friendly - 性能优化 / Performance optimized - 小屏幕适配 / Small screen adapted ## 🔗 相关链接 / Related Links - 项目主页 / Project Homepage: https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider - 中文README / Chinese README: [../README.md](../README.md) - React版本 / React Version: [./client/](./client/) ## 📄 许可证 / License 与项目主仓库保持一致。 Same as the main project repository. --- **Made with ❤️ by TechnologyStar** ================================================ FILE: website/README.md ================================================ # 🌐 Openai / Claude / Deepseek API Provider [![Last Commit](https://img.shields.io/github/last-commit/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider) [![License](https://img.shields.io/github/license/TechnologyStar/Openai-Claude-Deepseek-API-provider)](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/blob/main/LICENSE) > 🏗️ A curated list of third-party platforms providing **OpenAI / Claude / DeepSeek** APIs for learning, research, and non-commercial use.

中文版 English Русская версия Version Française

> 🏗️ 精选的第三方平台列表,提供 **OpenAI / Claude / DeepSeek** API,供学习、研究和非商业使用。 --- > ⚠️ **使用说明** > > 本项目为免费公益项目,严格禁止任何违法用途。 > > * 遵守 [OpenAI 使用条款](https://openai.com/policies/terms-of-use) > * 遵守 [《生成式人工智能服务管理暂行办法》](http://www.cac.gov.cn/2023-07/13/c_1690898327029107.htm),**请勿对中国公众提供未经备案的生成式AI服务**。 > * 官网:[Openai / Claude / Deepseek API Provider](https://d706445b-7658-4708-bb08-bac6c5a775ad-00-2z2hsdckl4fie.riker.replit.dev/) --- ## 🚀 项目简介 * 📌 收录并验证来自互联网的第三方 API 提供平台(部分免费) * 🔧 免注册 / 一键接入 / 支持多模型(OpenAI、Claude、DeepSeek 等) * 🔒 所有网站仅作收录展示,**请勿输入个人敏感信息** * 🌍 支持多语言界面(中文、English、Русский、Français) * 📱 响应式设计,支持桌面端和移动端 > 💡 如果觉得项目有帮助,欢迎 Star 🌟 --- ## 🎁 特色标签说明 | 标签 | 含义 | | -- | ------------------ | | 🆓 | 完全免费 | | 🔓 | 有免费额度 | | 💰 | 需要充值 | | 💪 | Claude 最新支持 | | ✌ | OpenAI 最新支持 | | 🎉 | 其他模型支持(如 DeepSeek) | | 🌎 | 需要国际网络 | | 🎁 | 充值赠送额度优惠 | | 🚀 | 支持高并发 | | 😆 | 每日签到领余额 | | 🚩 | 已备案平台 | | ✔ | 已验证真实性 | --- ## 📱 推荐应用支持
📦 点击展开查看兼容应用列表 ### ✅ [Cherry Studio](https://github.com/CherryHQ/cherry-studio) > 跨平台桌面端 + 移动端,集成主流 AI 云服务 + 本地模型。 ### ✅ [ChatGPT 好友插件 (uTools)](https://u.tools/plugins/detail/ChatGPT.%E5%A5%BD%E5%8F%8B/) > 桌面端智能聊天插件,支持角色设定、多模型、多会话管理。 ### ✅ [ChatGPT-Next-Web](https://github.com/Yidadaa/ChatGPT-Next-Web) > 开源网页端 ChatGPT 前端,支持 API Key 与多用户协作。 ### ✅ [LobeChat](https://github.com/lobehub/lobe-chat) > 支持视觉、语音交互和多模型切换,网页端 AI 会话框架。 ### ✅ [BotGem](https://botgem.com/) > 移动端优先设计,支持语音交流与 AI 好友系统。 ### ✅ [ChatBox](https://github.com/Bin-Huang/chatbox) > 支持 iOS、Android 和桌面端,界面现代,功能完整。 ### ✅ [FastGPT](https://github.com/labring/FastGPT) > 知识库 + 工作流集成,企业内训/客服场景首选。 ### ✅ [AnythingLLM](https://github.com/Mintplex-Labs/anything-llm) > 支持本地部署与插件扩展,适合对数据隐私有要求的用户。
--- ## 🌐 第三方 API 提供方列表
序号 网站 链接 标签 备注
1 chat01(推荐)(含邀请码) https://chat01.ai 🔓✌🎁💰✔ 支持pro,解决降智问题,每天免费2积分,聊天+api同站
2 cloud.siliconflow.cn(推荐/企业级) https://cloud.siliconflow.cn/models 🔓💪✌🎉🚀🚩✔ 华为云昇腾服务,实名送14元,每日最多请求100次
3 VoAPI https://demo.voapi.top 🆓😆💪✌ 【全公益网站】余额每日清零
4 头顶冒火 https://burn.hair ✌🎉😆🚀 赠 $0.3,每日签到得额度,支持高并发
5 V3 API(混合版) https://api.v3.cm 🚀🔓💪🎁🎉✌ 赠 $0.2,高并发,3折充值,超多模型
6 V3 API(官转版) https://gf.gpt.ge 🚀🌹🔓💪 赠 $0.2,高并发,6折充值
7 openai-hk https://openai-hk.com 🆓🔓🎉✌💪🚀 赠1元,超高并发,含GPT3.5公益版
8 ChatGPT API 水龙头 https://faucet.openkey.cloud 🆓 免费$1额度,3天有效期
9 公益免费的ChatGPT API GitHub 🆓 公益免费
10 GPT-API-free GitHub 🆓💪 支持 GPT-4,每天3次
11 openkey https://openkey.cloud 🔓💪✌🚀 赠$0.2,支持多并发
12 gptgod.online https://gptgod.online 💪✌🎁💰🎉😆 按次计费,积分额度
13 m3.ckit.gold https://m3.ckit.gold 💰💪✌ 3元/刀,注册送$0.1
14 小兔api https://api.aischat.xy 🆓💪✌
15 goapi.gptnb.ai https://goapi.gptnb.ai 💪✌🎁💰🎉
16 api.aigc369.com https://api.aigc369.com/pricing 💪✌🎁💰🎉
17 api.mjdjourney.cn https://api.mjdjourney.cn 💪✌🎁💰🎉
18 api.bltcy.ai https://api.bltcy.ai 💪✌🎁💰🎉
--- ## 📖 使用指南 1. 🔑 **获取 API Key**:注册平台后,在用户中心复制您的API密钥 2. ⚙ **配置 Endpoint**:填写 API 地址到支持的应用程序中 3. 🤖 **选择模型**:根据平台支持情况切换不同的AI模型 4. 📊 **用量监控**:推荐使用客户端自带的用量限制功能 ### 详细配置步骤 #### 步骤一:选择合适的API提供商 - 根据您的需求选择免费或付费服务 - 查看标签了解平台支持的模型类型 - 注意是否需要国际网络访问 #### 步骤二:注册并获取API Key - 访问选定的平台并完成注册 - 在用户中心或API设置页面找到您的API密钥 - 妥善保管API密钥,不要泄露给他人 #### 步骤三:配置应用程序 - 在您使用的AI应用中找到API设置 - 填入API端点地址和您的API密钥 - 选择合适的模型进行测试 --- ## 🙌 贡献指南 我们欢迎以下贡献方式: * ✨ **添加新 API 提供商**(需稳定运行 ≥ 3 天) * 🧰 **补充使用教程**(包括配置截图、录屏) * 🧪 **开发验证脚本**(自动检测失效平台) * 🌍 **多语言翻译**(如:英文、日文、韩文等) * 🐛 **报告问题**(发现失效链接或错误信息) * 📝 **完善文档**(改进说明文档和使用指南) ### 贡献方式 1. **Fork 本仓库** 2. **创建功能分支** (`git checkout -b feature/AmazingFeature`) 3. **提交更改** (`git commit -m 'Add some AmazingFeature'`) 4. **推送到分支** (`git push origin feature/AmazingFeature`) 5. **开启 Pull Request** > 请提交 Pull Request 或 Issue,我们将尽快处理! --- ## 🛠️ 技术栈 本项目采用现代化的全栈开发技术: ### 前端技术 - **React 18** - 现代化的UI框架 - **TypeScript** - 类型安全的JavaScript - **Tailwind CSS** - 实用优先的CSS框架 - **Vite** - 快速的构建工具 - **TanStack Query** - 强大的数据获取库 - **Wouter** - 轻量级路由库 ### 后端技术 - **Node.js** - JavaScript运行环境 - **Express.js** - Web应用框架 - **TypeScript** - 类型安全开发 - **Drizzle ORM** - 现代化的ORM - **PostgreSQL** - 关系型数据库 ### 特色功能 - 🌍 国际化支持(i18n) - 📱 响应式设计 - 🔍 实时搜索和过滤 - 💾 本地存储偏好设置 - 🎨 现代化UI组件库 --- ## 🚀 快速开始 ### 本地开发 ```bash # 克隆项目 git clone https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider.git # 进入项目目录 cd Openai-Claude-Deepseek-API-provider # 安装依赖 npm install # 启动开发服务器 npm run dev ``` ### 环境要求 - Node.js 18+ - npm 或 yarn - 现代浏览器支持 --- ## ❌ 失效平台列表
📛 点击展开查看失效平台 | # | 名称 | 链接 | 状态 | 失效时间 | | - | ------ | ---------------------------------------- | ------ | -------- | | 1 | 464888 | [api.464888.xyz](https://api.464888.xyz) | ❌ 无法访问 | 2024-12 | > 如发现新失效平台,欢迎通过 Issue 提交!
--- ## 📊 项目统计 - 🔗 **API提供商数量**:18+ - 🌍 **支持语言**:4种(中文、英文、俄文、法文) - 📱 **推荐应用**:8款 - ⭐ **GitHub Stars**:持续增长中 - 🔄 **更新频率**:每周更新 --- ## 🙏 特别鸣谢 ### 平台支持 - **Replit** - 提供优秀的在线开发环境 [立即注册并使用邀请码](https://replit.com/refer/HarmonyOSam) - **chat01** - 提供稳定的API服务支持 [访问 chat01 并使用邀请码](https://chat01.ai/?ref=j45ikbTa) ### 开源项目 感谢所有为开源社区贡献的开发者们,特别是以下项目: - [shadcn/ui](https://ui.shadcn.com/) - 优秀的UI组件库 - [Tailwind CSS](https://tailwindcss.com/) - 实用的CSS框架 - [React](https://reactjs.org/) - 强大的前端框架 --- ## 📄 开源协议 本项目采用 [MIT License](LICENSE) 开源协议。 --- ## ⚖️ 法律免责声明 - 本项目不存储任何 API Key,也不提供代理或转发服务 - 所有平台来源于互联网,使用风险请自行评估 - 项目仅供学习研究使用,严禁用于非法用途 - 若因使用第三方服务造成损失,作者不承担任何法律责任 - 使用前请仔细阅读各API提供商的服务条款 --- ## 📞 联系我们 - **GitHub Issues**:[提交问题](https://github.com/TechnologyStar/Openai-Claude-Deepseek-API-provider/issues) - **项目主页**:[API Provider Directory](https://d706445b-7658-4708-bb08-bac6c5a775ad-00-2z2hsdckl4fie.riker.replit.dev/) - **作者主页**:[TechnologyStar](https://github.com/TechnologyStar) --- ## 🔄 更新日志 ### 2024-12-27 - ✅ 完成多语言网站界面开发 - ✅ 添加响应式设计支持 - ✅ 集成18个API提供商数据 - ✅ 实现搜索和过滤功能 ### 更多更新 查看 [CHANGELOG.md](CHANGELOG.md) 了解详细更新历史。 --- [![Star History](https://api.star-history.com/svg?repos=TechnologyStar/Openai-Claude-Deepseek-API-provider&type=Date)](https://star-history.com/#TechnologyStar/Openai-Claude-Deepseek-API-provider&Date) Made with ❤️ by [TechnologyStar](https://github.com/TechnologyStar) ================================================ FILE: website/attached_assets/Pasted--API-p-table-border-1-cellspacing-0-cellpadding-6-thead-tr--1751255126331_1751255126339.txt ================================================ ## 🌐 第三方 API 提供方列表

序号 网站 链接 标签 备注
1 chat01(推荐)(含邀请码) https://chat01.ai 🔓✌🎁💰✔ 支持pro,解决降智问题,每天免费2积分,聊天+api同站
2 cloud.siliconflow.cn(推荐/企业级) https://cloud.siliconflow.cn/models 🔓💪✌🎉🚀🚩✔ 华为云昇腾服务,实名送14元,每日最多请求100次
3 VoAPI https://demo.voapi.top 🆓😆💪✌ 【全公益网站】余额每日清零
4 头顶冒火 https://burn.hair ✌🎉😆🚀 赠 $0.3,每日签到得额度,支持高并发
5 V3 API(混合版) https://api.v3.cm 🚀🔓💪🎁🎉✌ 赠 $0.2,高并发,3折充值,超多模型
6 V3 API(官转版) https://gf.gpt.ge 🚀🌹🔓💪 赠 $0.2,高并发,6折充值
7 openai-hk https://openai-hk.com 🆓🔓🎉✌💪🚀 赠1元,超高并发,含GPT3.5公益版
8 ChatGPT API 水龙头 https://faucet.openkey.cloud 🆓 免费$1额度,3天有效期
9 公益免费的ChatGPT API GitHub 🆓 公益免费
10 GPT-API-free GitHub 🆓💪 支持 GPT-4,每天3次
11 openkey https://openkey.cloud 🔓💪✌🚀 赠$0.2,支持多并发
12 gptgod.online https://gptgod.online 💪✌🎁💰🎉😆 按次计费,积分额度
13 m3.ckit.gold https://m3.ckit.gold 💰💪✌ 3元/刀,注册送$0.1
14 小兔api https://api.aischat.xy 🆓💪✌
15 goapi.gptnb.ai https://goapi.gptnb.ai 💪✌🎁💰🎉
16 api.aigc369.com https://api.aigc369.com/pricing 💪✌🎁💰🎉
17 api.mjdjourney.cn https://api.mjdjourney.cn 💪✌🎁💰🎉
18 api.bltcy.ai https://api.bltcy.ai 💪✌🎁💰🎉
19 4Z API 中转站 https://zzzzapi.com 🔓✌💪🎉🚀 华为云昇腾服务,支持GPT-4o、Claude 3.5,新用户赠100元额度,适合企业级高并发场景。
20 简易API中转站 https://jeniya.top 🔓✌💪🎉🚀 聚合多模型,国内直连无限制,注册送100元测试额度。
21 CloseAI https://closeai-asia.com 💰✌💪🎉🚀 企业级代理,支持GPT-4o、Claude 3.5,提供中文技术支持。
22 云鲸AI https://api.atalk-ai.com 🔓✌💪🎉🚀 聚合ChatGPT、Claude、文心一言,注册赠5元体验券。
23 ModelBridge https://model-bridge.okeeper.com 🔓✌💪🎉🚀 国内免费代理,兼容OpenAI接口和国产模型(如文心一言)。
24 UiUi API https://sg.uiuiapi.com 🔓✌💪🎉🚀 支持Claude 4、Gemini等模型,兼容OpenAI接口格式。
25 老张API中转服务 https://api.laozhang.ai 🔓✌💪🎉🚀 支持Claude 3和GPT-4o,新用户赠20元额度,支持支付宝/微信支付。
26 海鲸AI聚合平台 https://ai.atalk-ai.com 🔓✌💪🎉🚀 国内备案平台,支持多模型统一API接入。
27 One API https://one-api.ai 🔓✌💪🎉🚀 开源接口管理系统,支持多模型分发和私有化部署。
28 OpenRouter https://openrouter.ai 🔓✌💪🎉🚀 支持293个模型(含OpenAI、Claude、Gemini),提供免费额度。
29 Gemini API代理 https://gemini-proxy.com 🔓✌🎉🚀 支持Google Gemini模型,兼容OpenAI接口,提供免费额度。
30 DeepSeek API聚合 https://deepseek-aggregator.com 🔓💪🎉🚀 聚合DeepSeek系列模型,提供免费测试额度。
31 Hugging Face模型代理 https://huggingface.co/inference-api 🔓💪🎉🚀 支持开源模型(如Llama 3),提供免费额度和企业级服务。
32 AI21 Labs官方代理 https://studio.ai21.com 💰✌💪🎉 支持Jurassic-2模型,适合自然语言处理任务。
33 Cohere API代理 https://cohere.ai 💰✌💪🎉 支持文本生成和分类模型,提供企业级API。
34 AI API聚合平台 https://api.ai-aggregator.com 🔓✌💪🎉🚀 聚合多模型,提供统一接口和负载均衡。
35 AI.LS https://ai.ls 🆓✌ 极简接口,GPT-3.5免费匿名使用
36 简易API https://jeniya.top 🔓✌💪🎉🎁 注册送¥100额度,支持Claude/GPT-4o多模型
37 OpenAI120 https://openai120.com 🔓✌🎁 新用户送$3额度,单价同官方
38 DuckAGI https://duckagi.com 💰✌🎉🚀 多模态支持GPT-4o/Sora,适合AI绘图
39 Aihubmix https://aihubmix.com 💰🎉 国产模型聚合(文心一言/通义千问)
40 WokaAI https://wokaai.com ✌🚩✔ 上海企业运营,ICP备案双线路
41 azapi https://azapi.com.cn 💰🚩✔ 杭州企业备案,长期使用优惠
42 ClaudeAPI https://claudeapi.io 💪🚀✔ Anthropic官方合作,支持文件解析
43 Gala API https://galaapi.com 🎉🚀✔ 谷歌Gemini专用高速通道
================================================ FILE: website/attached_assets/Pasted--DOCTYPE-html-html-lang-zh-CN-head-meta-charset-UTF-8-meta-name-viewport-co-1751255172628_1751255172630.txt ================================================ AI 聊天工具推荐表生成器

AI 聊天工具推荐表生成器

赞助方平台将加入邀请码,感谢您的支持

标签含义:
 - 🆓 完全免费
 - 🔓 有免费额度
 - 💰 需要充值
 - 💪 支持 Claude 最新模型
 - ✌ 支持 OpenAI 最新模型
 - 🎉 支持其他模型或其他功能
 - 🌎 需要国际网络
 - 🎁 充值有较大优惠(<50%)
 - 🚀 支持高并发
 - 😆 签到领余额
 - 🚩 网站通过中国备案
 - ✔ 已验证安全性/真实性

📥 导入原有供应商 HTML

请在下方粘贴已有的 <table> 部分(从 <table></table>),然后点击“导入供应商”按钮。

➕ 添加或编辑供应商

序号 网站 链接 标签 备注 操作

⚙️ API 设置

================================================ FILE: website/attached_assets/Pasted--Logo-lionbridge-com-weglot-c-1750993147083_1750993147084.txt ================================================ 网站应采用一致的全局模板保证各语言界面风格统一。页面风格要简洁明快,品牌元素(Logo、色彩、字体)在各语种页面中保持一致,这可以提高用户识别度和信任感 lionbridge.com weglot.com 。推荐使用响应式设计与灵活布局,以便不同语言(包括中、英、俄、法等)文字长度变化时,都能自动适配界面而不破坏排版。 图:带有全球旗帜的地图示意网站面向全球用户。 全局模板:采用相同布局模板,各语种页面仅作必要定制,避免重复开发,确保品牌形象一致 lionbridge.com weglot.com 。例如,所有语言版本应使用相同的导航栏、页面结构和配色方案。 简洁风格:界面应保持简洁,避免过度复杂的交互(如多层级步骤),否则会增加后续本地化难度 rubric.com 。文本用语应清晰易懂,并预留足够空间,因为多数语言(如德语、法语)翻译后比英语或中文占用更大篇幅 rubric.com smart-interface-design-patterns.com 。 语言切换与导航设计 页面顶部或底部要放置语言切换器,位置醒目且易于访问 weglot.com lionbridge.com 。常见做法是在顶栏右上角或页脚提供下拉菜单,让用户能够随时更换语言。语言列表应以原生语言名称显示(如「English」、「中文」、「Русский」、「Français」),而不是使用国旗图标,以避免同一语言对应多个国家(如阿拉伯语)或多语言国家的歧义 lionbridge.com weglot.com 。也可以根据需要结合自动检测(根据浏览器语言或地区)与手动选择,使用户体验更友好 rubric.com rubric.com 。 易查找:确保切换器在每页均可见;使用下拉框或固定按钮形式都可,但要直观标明“语言”或使用地球等通用图标。 weglot.com 语言名称:始终用目标语言自身的名称标识(如「Deutsch」而非“German”) weglot.com ;避免使用国家/地区标志图标来代表语言 lionbridge.com 。 导航一致:导航菜单、侧边栏等在不同语言间结构相同,各项功能(如 API 列表、使用指南、失效列表等)应一一对应,保持布局和层级一致性。 图:手机应用中的语言选择界面示例(原生语言名称)。 内容展示与数据表格 项目的核心是第三方 API 提供商列表,界面展示时可采用表格或卡片式列表。表格设计应遵循可读性和响应式原则 uxpin.com uxpin.com : 清晰表头与排版:每列有明确表头(如「序号」「网站」「链接」「标签」「备注」)。使用可分辨的字体、适当的行列间距,以及斑马纹等视觉分隔 uxpin.com uxpin.com ,以提高扫描效率。 信息层级:重要信息置于左侧(如网站名和链接),按重要性合理排序 uxpin.com 。标签列可使用图标+文字(例如🔓 表示解锁模式,🆓 表示免费),使属性一目了然。链接列可以提供超链接或复制按钮方便访问。 响应式布局:表格在小屏设备上应自动适应。可以在移动端使用水平滚动或卡片布局,确保阅读体验不受影响 uxpin.com rubric.com 。 辅助功能:为表格添加 、表头作用域()等 HTML 标记,以提升可访问性;确保文字大小、颜色对比度满足无障碍标准,便于不同用户群体使用 uxpin.com 。 若列表数据较长,可加入搜索和筛选功能,让用户按标签(如免费、有优惠、支持模型)过滤平台;或者提供分页、排序等交互,方便快速定位目标项 uxpin.com uxpin.com 。 图标、徽章与交互元素 在品牌和表格基础上,可使用**徽章(Badge)**或图标来突出信息,但要保持简洁不繁琐 cieden.com cieden.com : 状态徽章:在表格“标签”列为各平台添加状态徽章,如“🆓”标记免费,“✔”标记已验证,“💰”表示付费等。使用简短文字或符号加图标的组合,以提高可读性 cieden.com 。 一致风格:徽章大小、形状和颜色应与整体UI风格一致,不抢夺主体内容注意力。图标选用各文化通用的符号,避免含义可能产生歧义的表情或国旗 cieden.com rubric.com 。 可交互提示:对重要按钮(如“复制链接”、“更多详情”等)使用悬浮提示(Tooltip)说明其功能,或增加点击反馈。确保交互元素(链接、按钮)明显可识别,并使用对比色或下划线加以区分。 响应式布局与无障碍 网站必须响应式设计,在不同分辨率和设备上均能良好展示 uxpin.com rubric.com 。设计时要考虑文字长度变化对布局的影响 smart-interface-design-patterns.com :例如中文标题较短但德语或俄语可能更长,应留白以防文字溢出。可以通过**伪本地化(pseudolocalization)**测试工具,模拟文本拉长后界面表现,及时调整布局。 smart-interface-design-patterns.com 移动端优先:鉴于手机用户众多,设计要保证在小屏幕下菜单可折叠、表格可横向滑动或变换为卡片显示 rubric.com uxpin.com 。关键按钮和链接区域留足点触尺寸,使用弹性布局避免内容被遮挡。 字体与图形:选择支持多语言字符集的字体,尤其要涵盖汉字、西里尔字母、拉丁字母等字符。考虑界面元素在不同语言下的视觉效果(如翻译后图像描述是否适用)。 无障碍:所有图片应提供 alt 文本说明,表格提供 caption 说明。导航和互动元素使用语义 HTML(如