All models

DeepSeek V3.1

Available

DeepSeek · Text

Get API key

Overview

AI model available through the unified EasyToken API. Access it through EasyToken's unified API with centralized billing and usage observability.

Capabilities

ChatReasoning

API example

Python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.easytoken.site/v1"
)

response = client.chat.completions.create(
    model="deepseek-v3.1",
    messages=[{"role": "user", "content": "Hello"}]
)