Canopy Wave & SAIHEACanopy Wave & SAIHEAT Announce Merger Agreement | Learn MoreArrow
DeepSeek-V4-Pro-0813 API
CHAT

DeepSeek-V4-Pro-0813 API

All You Need to Know About DeepSeek-V4-Pro-0813 API

Overview

Model Provider:DeepSeek
Model Type:LLM
State:Ready

Key Specs

Quantization:FP8
Parameters:1.6T
Context:1M
Pricing:$1.32 input / $3.96 output / $0.044 cache
Try Model API
Quick Start
Reserve Dedicated Endpoint

Introduction

DeepSeek-V4-Pro-0813 is the official release of DeepSeek-V4-Pro, superseding the preview version, with greatly enhanced agentic capabilities and performance improvements that are especially pronounced in production environments. It is built on the DeepSeek-V4-Pro (Preview) model structure, with a DSpark speculative decoding module attached.

DeepSeek-V4-Pro-0813 API Usage

Model

Endpoint

deepseek/deepseek-v4-pro


        1
        curl -X POST https://inference.canopywave.io/v1/chat/completions \
      
        2
          -H "Content-Type: application/json" \
      
        3
          -H "Authorization: Bearer $CANOPYWAVE_API_KEY" \
      
        4
          -d '{
      
        5
            "model": "deepseek/deepseek-v4-pro",
      
        6
            "messages": [
      
        7
              {"role": "user", "content": "tell me a story"}
      
        8
            ],
      
        9
            "max_tokens": 1000,
      
        10
            "temperature": 0.7
      
        11
          }'