MMaitoken.ai

Quickstart

If your app already uses the OpenAI SDK, switch the base URL and API key to start calling Maitoken.

  1. Create an account
  2. Recharge or request test credits
  3. Create an API key
  4. Call the OpenAI-compatible endpoint
  5. Check usage and billing
curl https://api.maitoken.ai/v1/chat/completions \
  -H "Authorization: Bearer MAITOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-chat",
    "messages": [{"role":"user","content":"Hello"}]
  }'