DeepSeek-V4-Flash
$0.09Output
$0.18
USD per 1M tokens
Inspect model →Put DeepSeek, Qwen, GLM, Kimi and MiniMax behind one API. Keep your tools. Choose how you pay.
OpenAI-compatible API · PAYG + optional plans
Use the OpenAI-compatible endpoint to call supported models. Model capabilities still vary; choose the right fit for each task.
A common API surface for experimenting with different models in your existing application.
Compare input and output rates side by side, then estimate the cost of your workload.
Use a prepaid balance for variable demand, or explore a plan for regular coding and agent work.
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.synet.run/v1",
api_key=os.environ["SYNET_API_KEY"]
)
response = client.chat.completions.create(
model="deepseek/deepseek-v4-flash",
messages=[{"role": "user",
"content": "Review this function."}]
)import os
from anthropic import Anthropic
client = Anthropic(
base_url="https://api.synet.run",
api_key=os.environ["SYNET_API_KEY"]
)
response = client.messages.create(
model="deepseek/deepseek-v4-flash",
max_tokens=1024,
messages=[{"role": "user",
"content": "Review this function."}]
)import os
from google import genai
client = genai.Client(
api_key=os.environ["SYNET_API_KEY"],
http_options={"base_url": "https://api.synet.run"}
)
response = client.models.generate_content(
model="deepseek/deepseek-v4-flash",
contents="Review this function."
)Example only. Requires an account, API key and an available model.
OpenAI, Anthropic and Gemini SDKs all work unchanged — point the client at Synet and keep your existing code.
USD per 1M tokens
Inspect model →USD per 1M tokens
Inspect model →USD per 1M tokens
Inspect model →Try a model, compare the cost, then choose your pace.