Skip to main content
This guide walks you from account setup to your first successful model call.
1

Create and sign in to your account

Go to https://moxus.ai and register with email verification or an enabled third-party login provider.
2

Prepare quota

Confirm that your account has usable quota through a trial grant, top-up, or redemption code.
3

Create an API key

Create an API key that starts with sk-, and optionally set quota, expiration, model scope, or IP restrictions.
4

Choose a model

Open the model catalog and copy the exact model name, such as gpt-4o, deepseek-chat, or gemini-2.5-pro.
5

Send your first request

Use cURL, an SDK, or the Playground, then confirm the request in usage logs.
curl https://moxus.ai/v1/chat/completions \
  -H "Authorization: Bearer sk-your-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Say hello in one sentence"}]
  }'

Next steps