Step
01
Create an account
Sign up with your name and email to activate your EasyToken workspace.
DEVELOPER DOCUMENTATION
One key, one API, access to top models. This page covers the core setup and integration flow for token platform users.
Follow these five steps to go from account signup to your first successful API call.
Step
01
Sign up with your name and email to activate your EasyToken workspace.
Step
02
Open Console -> API Keys -> Create key.
Step
03
Recharge extra credit in Billing.
Step
04
Call the OpenAI-compatible endpoint with your key and preferred model.
Step
05
Monitor token usage, request volume, and cost in the Billing dashboard.
Use a secret API key in the Authorization header. Never expose this key in browser-side code.
Store keys in server environment variables, rotate on schedule, and revoke immediately if leaked.
Example request · OpenAI Python SDK
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.2",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Summarize this product update."}
],
temperature=0.3
)
print(response.choices[0].message.content)Call multiple providers through one API endpoint and one account balance.
Reuse your existing OpenAI-compatible payload structure with minimal changes.
Check token usage and spend in the console to manage your prepaid balance.
EasyToken provides three basic modes. Start with one mode, then expand as your product needs grow.
For chatbots, Q and A, summarization, extraction, and generation.
Basic endpoint
POST /chat/completions
Review the text chat request and response format returned by the OpenAI-compatible endpoint.
Text Mode
Chatbots, Q&A, summarization, extraction, and generation.
Endpoint
POST /chat/completions
Request
POST /chat/completions
{
"model": "deepseek-v3.2",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Summarize this product update."}
],
"temperature": 0.3
}Response
{
"id": "chatcmpl_xxx",
"object": "chat.completion",
"model": "deepseek-v3.2",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The update adds prepaid billing, better usage visibility, and a simpler API onboarding flow."
},
"finish_reason": "stop"
}
]
}Use https://api.easytoken.site/v1 for all requests.
Endpoints follow OpenAI-style schemas, so existing SDK integrations are easy to migrate.
Limits vary by plan and model. Handle HTTP 429 with exponential backoff and retries.
Log request id and status code. Common responses: 400, 401, 403, 429, 500.
EasyToken uses prepaid billing based on input/output token usage. Add balance first, then monitor remaining credit and spend in your dashboard.
| Item | What to monitor | Where |
|---|---|---|
| Token usage | Input and output tokens per model | Usage dashboard |
| Remaining balance | Available prepaid credit after requests | Billing overview |
| Invoice history | Top-ups and payment records | Billing history |
EasyToken docs are intentionally simple. For model choices and pricing rates, continue with the model list and pricing pages.