Overview
Most general AI chat apps connect to LemonData through the standard OpenAI-compatible chat path. In practice that means:- use
https://api.lemondata.cc/v1as the base URL unless the app explicitly asks for a full endpoint URL - use your LemonData API key as the OpenAI-style API key
- pick models that the app can use in a standard chat workflow
General chat apps are usually chat-completions oriented, not Codex Responses WebSocket clients. For Codex CLI/App, Cursor, or other coding tools that need Responses-specific behavior, use the dedicated integration guides instead.
Type: Chat AppPrimary Path: OpenAI-compatible chat-completionsSupport Confidence: Supported path
Supported Applications
| Application | Platform | Notes |
|---|---|---|
| Open WebUI | Web, Self-hosted | Popular self-hosted choice with OpenAI-compatible connections |
| LibreChat | Web, Self-hosted | Multi-provider chat workspace with custom OpenAI endpoints |
| LobeChat | Web, Desktop, Self-hosted | Strong custom-provider support |
| Cherry Studio | Windows, macOS, Linux | Good OpenAI-compatible provider flow |
| Chatbox | Windows, macOS, Linux | Simple OpenAI-compatible setup |
| TypingMind | Web, Desktop | Uses a custom endpoint style |
| NextChat | Web, Self-hosted | Lightweight ChatGPT-style client with base-URL overrides |
| ChatWise | Windows, macOS | Standard custom provider pattern |
Default Connection Values
| Field | Value |
|---|---|
| Base URL | https://api.lemondata.cc/v1 |
| API Key | sk-your-lemondata-key |
| API Type | OpenAI Compatible |
- Chat Completions:
https://api.lemondata.cc/v1/chat/completions
Example App Setups
- LobeChat
- Cherry Studio
- Chatbox
- TypingMind
- Open WebUI
- LibreChat
Self-hosted LobeChatLobeChat Cloud
- Open Settings → AI Service Provider
- Select OpenAI
- Enter your LemonData API key
- Set the custom endpoint to
https://api.lemondata.cc/v1
Safer Model Defaults
| Category | Suggested Models |
|---|---|
| General default | gpt-5.4, gpt-5-mini, gpt-4o |
| Anthropic | claude-sonnet-4-6, claude-opus-4-6 |
gemini-2.5-flash, gemini-2.5-pro | |
| DeepSeek | deepseek-r1, deepseek-v3-2 |
Tips
Prefer base URL when the app supports it
Prefer base URL when the app supports it
Most apps are easier to configure and less fragile when you provide
https://api.lemondata.cc/v1 as a base URL instead of a full endpoint URL.Use smaller models first
Use smaller models first
Start with
gpt-5-mini or gpt-4o for everyday chat, then move heavier reasoning tasks to gpt-5.4 or claude-opus-4-6.Keep coding tools separate
Keep coding tools separate
General chat apps and coding agents often need different endpoint behavior. Keep Codex/Cursor-style tools on their dedicated integration pages.
Troubleshooting
Connection Error
Connection Error
- Verify the base URL is exactly
https://api.lemondata.cc/v1 - Remove trailing slashes if the app auto-appends paths
- If the app wants a full endpoint URL, use
https://api.lemondata.cc/v1/chat/completions
401 Unauthorized
401 Unauthorized
Model Not Available
Model Not Available
- Verify the model name exactly
- Try a widely supported default like
gpt-5-mini,gpt-4o, orclaude-sonnet-4-6 - Check current availability in LemonData docs or dashboard