High-performance AI inference API deployed in Singapore. OpenAI-compatible. Pay-per-token. No USD card required.
One API key, all models. Switch models with a single parameter change.
Reasoning model with chain-of-thought capability. Great for complex analysis, coding, and math.
Larger reasoning model with enhanced accuracy. Requires A10 GPU — arriving in Johor Bahru.
Meta's flagship model for enterprise workloads. Multilingual support covering SEA languages.
Pay only for what you use. No monthly fees, no hidden costs. Billed in CNY — settle in your local currency.
For testing and prototyping
For production workloads
For high-volume & custom needs
From chatbots to code generation — one API, endless possibilities.
Build multilingual customer service chatbots for Southeast Asian markets.
Integrate AI coding assistants into your IDE or CI/CD pipeline.
Summarize, extract, and analyze business documents in seconds.
Real-time translation across English, Chinese, Vietnamese, Thai, Malay, and more.
OpenAI-compatible API. If your code works with OpenAI, it works with us — just change the base URL.
curl https://api.chengqiukeji.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer sk-your-api-key" \ -d '{ "model": "deepseek-r1:7b", "messages": [ {"role": "user", "content": "Hello!"} ], "stream": true }'
from openai import OpenAI client = OpenAI( base_url="https://api.chengqiukeji.com/v1", api_key="sk-your-api-key" ) response = client.chat.completions.create( model="deepseek-r1:7b", messages=[{"role": "user", "content": "Hello!"}], stream=True ) for chunk in response: print(chunk.choices[0].delta.content, end="")
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.chengqiukeji.com/v1", apiKey: "sk-your-api-key" }); const response = await client.chat.completions.create({ model: "deepseek-r1:7b", messages: [{ role: "user", content: "Hello!" }], stream: true }); for await (const chunk of response) { process.stdout.write(chunk.choices[0].delta.content || ""); }
$client = new GuzzleHttp\Client(); $response = $client->post('https://api.chengqiukeji.com/v1/chat/completions', [ 'headers' => [ 'Authorization' => 'Bearer sk-your-api-key', 'Content-Type' => 'application/json', ], 'json' => [ 'model' => 'deepseek-r1:7b', 'messages' => [['role' => 'user', 'content' => 'Hello!']], ], ]); echo $response->getBody();
Built specifically for the Southeast Asian market.
Deployed in Singapore with direct peering to SEA networks. Under 50ms from Jakarta, Bangkok, Manila.
HTTPS encrypted. API key isolation. No data stored after inference. GDPR-ready.
Pay-per-token with no minimum spend. Up to 70% cheaper than US-based providers.
Team based in China and Singapore. We understand SEA business culture and requirements.
From your app to the GPU in under 50ms.
OpenAI SDK or HTTP
Auth + billing + rate limit
NVIDIA T4 · Singapore
HTTPS:443 → Nginx (TLS + reverse proxy) → 8080 → FastAPI (auth + billing) → 11434 → Ollama (GPU)
Get your API key in seconds. No credit card required to start.