Connect in 5 minutes
Register for free at ecomai.online/register, your API Key will be auto-generated.
Select a plan that suits you in the console (from $2/month), pay via PayPal or USDT, and credits are available instantly.
Change your code's base URL to https://ecomai.online and use your API Key.
Fully compatible with the OpenAI API format. Just change base_url and api_key.
https://ecomai.online
| Model | Description |
|---|---|
deepseek-v4-flash | V4 Flash — Fast & Efficient |
deepseek-v4-pro | V4 Pro — High Performance |
deepseek-reasoner | Deep Reasoning |
deepseek-chat | General Chat |
curl https://ecomai.online/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer *** \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hello, please respond in English."}],
"max_tokens": 500
}'
from openai import OpenAI
client = OpenAI(
base_url="https://ecomai.online",
api_key="sk-your-api-key"
)
response = client.chat.completions.create(
model="deepseek-chat",
messages=[{"role": "user", "content": "Hello, please respond in English."}],
max_tokens=500
)
print(response.choices[0].message.content)
import requests
resp = requests.post(
"https://ecomai.online/v1/chat/completions",
headers={
"Authorization": "Bearer sk-your-api-key",
"Content-Type": "application/json"
},
json={
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hello, please respond in English."}],
"max_tokens": 500
}
)
print(resp.json()["choices"][0]["message"]["content"])
const response = await fetch('https://ecomai.online/v1/chat/completions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer sk-your-api-key'
},
body: JSON.stringify({
model: 'deepseek-chat',
messages: [{role: 'user', content: 'Hello, please respond in English.'}],
max_tokens: 500
})
});
const data = await response.json();
console.log(data.choices[0].message.content);
Log in and go to the Console — your API Key is displayed at the top.
In the Console, go to the "Purchase Plan" section and choose the option that fits you. We accept PayPal and USDT (TRC20).
Currently we support PayPal (international credit card / account balance) and USDT (TRC20 network).
As long as your network can connect to the internet, you can use it. It is accessible globally.
New users only have 10,000 free tokens. If you've used them up, you need to purchase a plan to continue.
For any issues, send an email to admin@ecomai.online. We will reply within 24 hours.