deepseek/deepseek-chat-v3-0324
GPU TEE
deepseek/deepseek-chat-v3-0324
Created 10/3/2025|164K context|$0.49/M input tokens|$1.14/M output tokens
DeepSeek V3, a 685B-parameter, mixture-of-experts model, is the latest iteration of the flagship chat model family from the DeepSeek team.
Providers for deepseek/deepseek-chat-v3-0324
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
phala
Input Price
$0.49
Output Price
$1.14
Total Context
164K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "deepseek/deepseek-chat-v3-0324",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})