deepseek-v3 API

streaming

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 tokensper 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
DeepSeek-V3 is the general-purpose chat model that put DeepSeek on the map in late 2024. It uses a Mixture-of-Experts architecture (671B total parameters, ~37B activated per token, per DeepSeek's own technical report), which is why it delivers quality close to much pricier frontier models while staying fast and inexpensive to serve. It is particularly strong on code generation, mathematics, and Chinese–English bilingual tasks, and its open-weights release made it one of the most independently benchmarked models of its generation. Unlike reasoning-first models, deepseek-v3 answers directly without spending hidden "thinking" tokens, so latency is predictable and the first token arrives quickly — a good fit for interactive chat and high-throughput batch jobs where you don't want to pay for deliberation you didn't ask for. On CaMeL Hub it is billed purely per token: $1.50 per 1M input and $6.00 per 1M output. Since output costs 4x input, prompt-heavy workloads such as summarization and classification are especially economical. DeepSeek has since shipped the V4 series (deepseek-v4-flash and deepseek-v4-pro are also available on CaMeL Hub), but deepseek-v3 remains a stable target if your prompts, evals, or fine-tuned pipelines were built against its behavior and you don't want output drift from a model swap. On CaMeL Hub you can reach it through both the OpenAI-compatible endpoint (/v1/chat/completions) and the Anthropic-compatible endpoint (/v1/messages), so existing tooling for either ecosystem works without a rewrite.

What it is good for

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.

More from DeepSeek