One OpenAI-compatible endpoint for DeepSeek, Qwen and GLM. Pay with USDT or a normal card — no Alipay, no Chinese bank account.
https://vantixcloud.com/v1
AuthAuthorization: Bearer vx-…
Get a keyRequest a discount quote at /ai-api — tell us spend, models and target discount; we issue your key on Telegram
ModelsGET /v1/models — deepseek-v4-pro, deepseek-v4-flash, deepseek-v3.2, qwen3.8-max, qwen3.7-max, qwen3.7-plus, glm-5.2
BillingPer token. Every response carries X-Vantix-Cost-USD and X-Vantix-Balance-USD
StreamingSupported ("stream": true)
curl https://vantixcloud.com/v1/chat/completions \
-H "Authorization: Bearer $VANTIX_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"deepseek-v4-flash","messages":[{"role":"user","content":"Hello"}]}'
from openai import OpenAI
client = OpenAI(base_url="https://vantixcloud.com/v1", api_key="vx-…")
r = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Hello"}],
)
print(r.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://vantixcloud.com/v1", apiKey: "vx-…" });
const r = await client.chat.completions.create({
model: "deepseek-v4-flash",
messages: [{ role: "user", content: "Hello" }],
});
console.log(r.choices[0].message.content);
Anything that supports an "OpenAI-compatible" provider works. Set the base URL, paste your key, pick a model id.
https://vantixcloud.com/v1vx-…deepseek-v4-pro (coding) or deepseek-v4-flash (cheap & fast)# librechat.yaml
endpoints:
custom:
- name: "VantixCloud"
apiKey: "${VANTIX_KEY}"
baseURL: "https://vantixcloud.com/v1"
models:
default: ["deepseek-v4-flash", "deepseek-v4-pro", "qwen3.7-plus", "glm-5.2"]
fetch: true
titleConvo: true
modelDisplayLabel: "VantixCloud"
https://vantixcloud.com (some apps want the host without /v1; if it fails, try with /v1)vx-…deepseek-v4-flash, deepseek-v4-pro, qwen3.8-max, glm-5.2https://vantixcloud.comvx-…from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="deepseek-v4-flash", base_url="https://vantixcloud.com/v1", api_key="vx-…")
curl -X POST https://vantixcloud.com/api/keys \
-H "Content-Type: application/json" \
-d '{"action":"balance","key":"vx-…"}'
USDT (TRC20) or card. Payment details are sent with your quote on Telegram.
| Status | Meaning |
|---|---|
| 401 | Missing or unknown key — get one at /ai-api |
| 402 | Balance is zero — top up |
| 400 | Unsupported model id, or upstream rejected the request (message included) |
| 502 / 503 | Upstream unavailable — check /status; your OpenAI-compatible client can fall back to another provider |
base_url and you are gone in 30 seconds. We would rather earn your usage than trap it.