Create an account in the console with email and password. New accounts can receive a small test balance.
Connect MultiConnection to your AI tools
One MultiConnection API key works with clients, scripts and SDKs that support OpenAI-compatible endpoints. Create a key, replace the base URL, and start testing.
https://multiconnection.cloud/v1
Bearer sk-live-...
gpt-5.4-mini
Complete integration in four steps
Create a key on the API Keys page. The secret is shown only once, so copy it immediately.
Select OpenAI-compatible or custom OpenAI endpoint, then paste the MultiConnection base URL and key.
Start with a lightweight model, then switch to Claude, GPT, DeepSeek or other routes for your workload.
Common client setup
Cursor / IDE tools
Choose OpenAI-compatible, custom OpenAI or third-party API in the model/provider settings.
- Base URL:
https://multiconnection.cloud/v1 - API Key: the
sk-live-...key from the console - Model:
gpt-5.4-miniorclaude-sonnet-4.6
Cline / Roo Code
Select OpenAI Compatible as the provider and enter the MultiConnection endpoint and model code.
- API Provider: OpenAI Compatible
- Base URL:
https://multiconnection.cloud/v1 - Model ID: copy a model code from the console pricing table
Cherry Studio
Add a custom provider and choose OpenAI-compatible mode.
- Provider name: MultiConnection
- API endpoint:
https://multiconnection.cloud/v1 - Secret: your console API key
Codex note
A MultiConnection API key cannot sign in to a Codex account. It works only when the client supports a custom OpenAI-compatible base URL.
- Start with
/v1/chat/completions - Codex-specific routes such as
/v1/responsescan be added as a separate compatibility layer
OpenAI SDK examples
JavaScript
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.MULTICONNECTION_API_KEY,
baseURL: "https://multiconnection.cloud/v1"
});
const result = await client.chat.completions.create({
model: "gpt-5.4-mini",
messages: [{ role: "user", content: "hello MultiConnection" }]
});
Python
from openai import OpenAI
import os
client = OpenAI(
api_key=os.environ["MULTICONNECTION_API_KEY"],
base_url="https://multiconnection.cloud/v1",
)
result = client.chat.completions.create(
model="gpt-5.4-mini",
messages=[{"role": "user", "content": "hello MultiConnection"}],
)