API Documentation

One OpenAI-compatible endpoint for DeepSeek, Qwen and GLM. Pay with USDT or a normal card — no Alipay, no Chinese bank account.

Base URLhttps://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)

Quickstart

curl

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"}]}'

Python (openai SDK)

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)

Node.js

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);

Use with your favourite tools

Anything that supports an "OpenAI-compatible" provider works. Set the base URL, paste your key, pick a model id.

Cline / Roo Code (VS Code)

LibreChat

# 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"

Cherry Studio / ChatBox / NextChat

one-api / new-api (self-hosted gateway)

LangChain

from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="deepseek-v4-flash", base_url="https://vantixcloud.com/v1", api_key="vx-…")

Check balance

curl -X POST https://vantixcloud.com/api/keys \
  -H "Content-Type: application/json" \
  -d '{"action":"balance","key":"vx-…"}'

Top up

USDT (TRC20) or card. Payment details are sent with your quote on Telegram.

Errors

StatusMeaning
401Missing or unknown key — get one at /ai-api
402Balance is zero — top up
400Unsupported model id, or upstream rejected the request (message included)
502 / 503Upstream unavailable — check /status; your OpenAI-compatible client can fall back to another provider
No lock-in. Everything here is standard OpenAI wire format. If you ever want to leave, change base_url and you are gone in 30 seconds. We would rather earn your usage than trap it.
Get your discount quote →