Codex CLI
Run a coding agent in terminal with Seenlife model routing and credits.
Connect coding agents, chat workspaces, app builders, automations, and SDK projects to Seenlife's OpenAI-compatible API. Customers recharge Seenlife Credits, paste the API key, and run supported models from one balance.
Use this base URL anywhere an OpenAI-compatible provider is accepted.
Base URL:
https://seenlife-api-production.up.railway.app/v1
API Key:
sk-seenlife-your-key
Example model:
deepseek/deepseek-v4-flash
Run a coding agent in terminal with Seenlife model routing and credits.
Add Seenlife as an OpenAI-compatible endpoint for IDE workflows.
Use Seenlife models inside VS Code agent tasks and edits.
Connect chat and code-edit workflows through one Seenlife key.
Run a private multi-model chat UI backed by Seenlife Credits.
Build a shared chat workspace with Seenlife-supported models.
Create chatbots and AI apps while usage bills to Seenlife balance.
Use Seenlife in automation flows for support, extraction, and writing.
Build streaming Next.js AI apps with a Seenlife endpoint.
Use the official OpenAI Python SDK by changing only base_url.
Drop Seenlife into OpenAI-compatible JavaScript projects.
Package prompts for ads, email, landing pages, and product copy.
Use HTTP/API nodes to run Seenlife models inside automation flows.
Connect a fast native code editor to OpenAI-compatible Seenlife models.
Build visual agents and route LLM calls through Seenlife Credits.
Use custom endpoint style settings where supported for coding chat.
Connect a VS Code coding agent to Seenlife model routing.
Translate, polish, and summarize text with Seenlife-backed models.
Use AI PDF and research workflows through OpenAI-compatible plugins.
Use Seenlife models inside IDE coding-agent tasks.
Connect a desktop work agent to Seenlife through compatible API settings.
Call Seenlife from Zaps using webhook or HTTP request actions.
Add Seenlife model calls to Lindy agents with HTTP requests.
Run an open desktop AI assistant with your Seenlife API key.
Use a native macOS AI assistant with Seenlife endpoint settings.
Add an AI browser sidebar for page chat using Seenlife models.
Control browser agents with Seenlife OpenAI-compatible models.
Use a polished bring-your-own-key chat UI with Seenlife Credits.
Build knowledge-base Q&A with Seenlife LLM and embedding models.
Run desktop chat on macOS and Windows with your Seenlife key.
Build customer-support and knowledge-base apps on Seenlife models.
Use an open terminal and desktop AI agent with Seenlife routing.
Run a self-hosted AI answer engine with Seenlife as provider.
Use desktop selection translation and OCR with Seenlife models.
Generate flashcards and study content through AI add-ons.
Most apps on this page use the same connection fields. Customers paste their Seenlife API key, choose a model, and usage is deducted from Seenlife Credits.
Base URL:
https://seenlife-api-production.up.railway.app/v1
API Key:
sk-seenlife-your-key
Recommended model:
deepseek/deepseek-v4-flash
Chat endpoint:
POST /chat/completions
OpenAI-compatible terminal coding agent setup.
npm install -g @openai/codex
export SEENLIFE_API_KEY="sk-seenlife-your-key"
# ~/.codex/config.toml
model = "openai/gpt-5-mini"
model_provider = "seenlife"
[model_providers.seenlife]
name = "Seenlife"
base_url = "https://seenlife-api-production.up.railway.app/v1"
env_key = "SEENLIFE_API_KEY"
Use Seenlife where custom OpenAI-compatible endpoints are supported.
Base URL:
https://seenlife-api-production.up.railway.app/v1
API Key:
sk-seenlife-your-key
Model:
openai/gpt-5-mini
Connect VS Code agent calls to Seenlife.
Provider: OpenAI Compatible
Base URL: https://seenlife-api-production.up.railway.app/v1
API Key: sk-seenlife-your-key
Model: deepseek/deepseek-v4-pro
Add Seenlife to Continue.dev for coding chat and edits.
{
"title": "Seenlife DeepSeek",
"provider": "openai",
"model": "deepseek/deepseek-v4-flash",
"apiBase": "https://seenlife-api-production.up.railway.app/v1",
"apiKey": "sk-seenlife-your-key"
}
Run your own browser chat UI on Seenlife models.
OPENAI_API_BASE_URL=https://seenlife-api-production.up.railway.app/v1
OPENAI_API_KEY=sk-seenlife-your-key
DEFAULT_MODEL=google/gemini-3.1-flash-lite
Shared chat workspace using Seenlife billing.
name: Seenlife
apiKey: sk-seenlife-your-key
baseURL: https://seenlife-api-production.up.railway.app/v1
models:
default:
- openai/gpt-4o
- deepseek/deepseek-v4-flash
Build AI apps and chatbots with Seenlife as the model provider.
Provider: OpenAI Compatible
API endpoint: https://seenlife-api-production.up.railway.app/v1
API key: sk-seenlife-your-key
Model: deepseek/deepseek-v4-flash
Use Seenlife inside workflow automations.
POST https://seenlife-api-production.up.railway.app/v1/chat/completions
Authorization: Bearer sk-seenlife-your-key
Content-Type: application/json
{
"model": "google/gemini-3.1-flash-lite",
"messages": [{ "role": "user", "content": "Summarize this lead." }]
}
Streaming AI apps in Next.js with Seenlife billing.
const seenlife = createOpenAI({
apiKey: process.env.SEENLIFE_API_KEY,
baseURL: "https://seenlife-api-production.up.railway.app/v1"
});
const result = streamText({
model: seenlife("openai/gpt-5-mini"),
messages
});
Official OpenAI Python SDK, Seenlife endpoint.
from openai import OpenAI
client = OpenAI(
api_key="sk-seenlife-your-key",
base_url="https://seenlife-api-production.up.railway.app/v1"
)
res = client.chat.completions.create(
model="deepseek/deepseek-v4-flash",
messages=[{"role": "user", "content": "Write a short email."}]
)
Use Seenlife inside JavaScript apps.
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.SEENLIFE_API_KEY,
baseURL: "https://seenlife-api-production.up.railway.app/v1"
});
const res = await client.chat.completions.create({
model: "openai/gpt-4o",
messages: [{ role: "user", content: "Generate product copy." }]
});
A prompt-pack style workflow for ads, email, SEO, and product copy.
{
"model": "moonshot/kimi-k2.6",
"messages": [
{ "role": "system", "content": "You write concise ecommerce marketing copy." },
{ "role": "user", "content": "Create 5 ad hooks for an AI API credits product." }
]
}