Conversation is a web testing surface. After you sign in, it uses an internal virtual key automatically. You do not need to paste your newly created API key into Conversation. The
sk- key you create is for external code, SDKs, scripts, and external tools.Flow
1
Sign in
Go to
https://moxus.cloud and sign in with email or an enabled third-party login provider.2
Prepare balance
Open Billing and confirm that your account has usable balance from top-up, a redemption code, or a platform grant.
3
Create an API key for external calls
Open API Keys and create a key that starts with
sk-. This key is for external code, SDKs, scripts, and external tools, not a required Conversation setting.4
Choose a protocol and model
Open Model Square, copy the exact model name, and choose the matching Base URL and request format for your protocol.
5
Send an external request
Send the request with cURL or the SDK that matches your protocol. Most projects can start with the OpenAI SDK.
Choose a request style
Each protocol has its own Base URL, authentication method, and request body. Do not send an OpenAI request body to the Anthropic or Google native endpoints.Without an SDK: direct HTTP
To verify that your key, model, and endpoint work, you can send a plain HTTP request without installing an AI SDK. Choose the example that matches your protocol: OpenAI, Anthropic, and Google-compatible calls use different URLs, authentication methods, and request bodies. Every example places the key directly in the code, so no terminal or configuration-file environment setup is required. Replacesk-your-key in the selected example with your actual key.
- OpenAI compatible
- Anthropic compatible
- Google compatible
OpenAI-compatible calls are the most common path for chat, tools, and SDK migrations. Use
https://moxus.cloud/v1/chat/completions with Authorization: Bearer ....SDK setup
SDKs assemble the HTTP request for you. When connecting an SDK to Moxus AI, confirm three settings:
For a first call, start with the OpenAI SDK. Use the Anthropic SDK or Google SDK when your project specifically expects Claude-native Messages or Google-native request formats.
For dependency installation, choose either
npm or pnpm; they are alternatives.
OpenAI SDK
If you are unsure which style to use, start with the OpenAI-compatible API. It works for most model calls, SDKs, and external tools. Install dependencies:openai_example.py for Python or openai-example.ts for TypeScript.
Anthropic SDK
Use the Anthropic SDK when your project already uses Claude-native Messages. Set Base URL tohttps://moxus.cloud; the SDK appends /v1/messages.
Install dependencies:
anthropic_example.py for Python or anthropic-example.ts for TypeScript.
Google SDK
Use the Google GenAI SDK when your project expects Google-native request formats. For the Google SDK, setbase_url / baseUrl to https://moxus.cloud and set the API version to v1beta; do not repeat /v1beta in the SDK Base URL.
Install dependencies:
google_example.py for Python or google-example.ts for TypeScript.
