Click a model to update the Quick Start code.
Loading API keys...
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://easytokenvip.com/v1"
)
response = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V4-Flash",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
Replace YOUR_API_KEY with the key you created above. Prices are per-million-token input rates; output tokens and reasoning tokens are charged separately according to the model ratio.