Getting Started
Prerequisites
Before creating your first Squad Server, you'll need:
- A syndicAI account, sign up at app.syndicai.dev
- A payment method, we accept all major credit and debit cards via Stripe
That's it. No Docker, no GPU marketplace accounts, no SSH keys.
Create Your First Squad Server
Step 1: Choose Your Model
After signing in, click Create Squad Server. You'll choose from our supported frontier-class models:
| Model | Parameters | Context | Best for |
|---|---|---|---|
| GLM-5.2 | 753B MoE | 262K | Maximum quality, near-Opus on SWE-bench Pro |
| MiniMax M3 | 453B MoE | 1M | Agentic coding, longest context, newest MiniMax |
| Kimi K2.7 Code | 1T MoE | 262K | Large-codebase coding and reasoning |
| MiniMax M2.5 | 230B MoE | 196K | Best value, reference config |
| Qwen3.6 27B | 27B Dense | 262K | Budget and single-GPU setups |
Most models use Mixture-of-Experts (MoE) architecture, meaning only a fraction of parameters are active per token, giving you frontier-class quality with efficient inference. See the models catalog for the full list.
Step 2: Select Your Tier
Choose how many GPU-hours per day your squad needs:
- Starter (2h/day), Light usage, solo or small squad
- Standard (4h/day), Regular daily coding sessions
- Pro (8h/day), Full-day coverage for heavy squads
Step 3: Configure Squad Size
Set the maximum number of squad members (up to 10). Thanks to vLLM's parallel processing, all members can use the server simultaneously with minimal performance degradation.
Step 4: Add Credit
Top up your credit balance via Stripe. A minimum balance of $10 is required to create your first Squad Server. Credits are deducted every 15 minutes while your server runs, you only pay for the GPU hours you actually use.
Step 5: Provisioning
syndicAI provisions a dedicated GPU instance for your squad. This typically takes 2–5 minutes. You'll see a real-time progress indicator as your server boots, loads the model weights, and becomes ready.
Get Your API Endpoint
Once provisioning completes, your Squad Server dashboard shows:
- API Base URL:
https://<your-squad-id>.syndicai.dev/v1 - API Key: Click "Create API Key" to generate one
Every squad member gets their own API key for individual usage tracking.
Connect Your Tools
Cursor
- Open Cursor Settings → Models → Add Model
- Set API Base URL to your Squad Server endpoint
- Paste your API Key
- Select your model from the dropdown
- Start coding
Continue (VS Code extension)
Add to your ~/.continue/config.yaml:
models:
- name: syndicAI
provider: openai
apiBase: https://<your-squad-id>.syndicai.dev/v1
apiKey: your-api-key
model: minimax-m2.5
aider
export OPENAI_API_BASE=https://<your-squad-id>.syndicai.dev/v1
export OPENAI_API_KEY=your-api-key
aider --model minimax-m2.5
Python SDK
from openai import OpenAI
client = OpenAI(
base_url="https://<your-squad-id>.syndicai.dev/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="minimax-m2.5",
messages=[{"role": "user", "content": "Write a Python function to merge two sorted lists"}],
)
print(response.choices[0].message.content)
Invite Your Squad
From your Squad Server dashboard:
- Click Invite Members
- Share the invite link with your squad
- Each member creates their own syndicAI account and joins
- Each member generates their own API key
Squad members see shared usage dashboards but manage their own API keys independently.
Next Steps
- Learn how syndicAI works under the hood
- Browse supported models and their capabilities
- Read the API reference for advanced usage
- Understand billing and cost splitting