deepseek-v3 API
DeepSeek-V3 is DeepSeek's open-weights Mixture-of-Experts chat model. Call it on CaMeL Hub with any OpenAI-compatible SDK — just set base_url to https://api.camel-hub.com/v1 — at $1.50 per 1M input tokens and $6.00 per 1M output tokens, with no monthly minimum.
Pricing
| per 1M input tokens | per 1M output tokens | |
|---|---|---|
| CaMeL Hub | $1.5 | $6.00 |
Prices are the public default-group rate in USD per 1M tokens; input and output are billed separately.
Specifications
- Provider
- DeepSeek
- Capabilities
- streaming
- Endpoints
- openai, anthropic
What it is good for
- High-volume customer-support and content-drafting bots where per-token cost dominates the budget
- Code generation, review, and refactoring assistance in mainstream programming languages
- Batch summarization, classification, and structured data extraction pipelines over large document sets
- Chinese–English translation and bilingual copywriting
- Math-flavored Q&A and tutoring flows that need solid accuracy without reasoning-model latency
- Regression-stable backends for products whose prompts were tuned against V3-era behavior
Quickstart
OpenAI-compatible: set base_url to https://api.camel-hub.com/v1 and use your CaMeL Hub API key. No SDK changes needed.
cURL
curl https://api.camel-hub.com/v1/chat/completions \
-H "Authorization: Bearer $CAMEL_HUB_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v3",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Python
from openai import OpenAI
client = OpenAI(
api_key="$CAMEL_HUB_KEY",
base_url="https://api.camel-hub.com/v1", # <-- the only change vs. the OpenAI default
)
resp = client.chat.completions.create(
model="deepseek-v3",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
Node.js
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.CAMEL_HUB_KEY,
baseURL: "https://api.camel-hub.com/v1", // <-- the only change vs. the OpenAI default
});
const resp = await client.chat.completions.create({
model: "deepseek-v3",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(resp.choices[0].message.content);
Get an API key Browse integration guides
Frequently asked questions
How is deepseek-v3 billed on CaMeL Hub?
Input and output tokens are priced separately: $1.50 per 1M input tokens and $6.00 per 1M output tokens. There is no per-request fee and no subscription requirement — you pay only for the tokens you actually use, and both counts are itemized in your usage log.
Does deepseek-v3 support streaming?
Yes. Pass stream: true in your chat completion request and tokens are delivered incrementally over server-sent events, exactly as with the official OpenAI SDK. Note that on CaMeL Hub this model is a text-in / text-out chat model — image input is not available on deepseek-v3.
Can I call deepseek-v3 with Anthropic-style tooling?
Yes. Besides the standard OpenAI-compatible /v1/chat/completions route, CaMeL Hub also exposes deepseek-v3 through an Anthropic-compatible /v1/messages endpoint, so clients built for the Anthropic API format can use it by changing only the base URL and API key.
How do I start using deepseek-v3?
Create an account at https://api.camel-hub.com/console, generate an API key, then point any OpenAI-compatible SDK at base_url https://api.camel-hub.com/v1 with model set to "deepseek-v3". Top-ups via Alipay, WeChat Pay, and international cards are supported, and one key gives you access to every model on the platform.