Models

deepseek-v3.2-exp β€” API, Pricing & Context Window | Vivgrid

deepseek-v3.2-exp on Vivgrid: DeepSeek's experimental V3.2 model with a 164K context window, available through one unified API.

deepseek-v3.2-exp is the experimental branch of DeepSeek V3.2, offering an extended 164K-token context window and a testbed for the latest DeepSeek improvements. It's intended for teams that want to evaluate cutting-edge behavior before it lands in stable releases.

Vivgrid exposes deepseek-v3.2-exp through the same unified, OpenAI-compatible API as the rest of the catalog, so experimentation requires no extra integration work.

Specifications

ProviderDeepSeek
Model IDdeepseek-v3.2-exp
Best forGeneral-purpose
Context window163,840 tokens
ModalitiesText
Tool / function callingYes
Knowledge cutoff2025-01
Acceleration🌐 Global (Centralized)

Pricing

Pricing for deepseek-v3.2-exp matches the provider's published rates. See live pricing in the Vivgrid Console.

Quick start

Call deepseek-v3.2-exp through Vivgrid's unified, OpenAI-compatible endpoint. Get an API key from the Vivgrid Console.

curl https://api.vivgrid.com/v1/chat/completions \
  -H "Authorization: Bearer $VIVGRID_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v3.2-exp",
    "messages": [
      { "role": "user", "content": "Say hello in English, Chinese and Spanish." }
    ],
    "stream": true
  }'

Ideal use cases

  • Evaluating experimental DeepSeek capabilities
  • Longer-context tasks than stable V3.2 (up to 164K tokens)
  • A/B testing against deepseek-v3.2 in production-like setups
  • Research and benchmarking workflows

On this page