Two products, two accounts
Almost every billing and authentication question in SynapseX comes down to one fact: SynapseX is two products with two separate accounts, two separate wallets and two incompatible key formats. This page is the single place where both are described side by side. Every other page in this documentation belongs to one product and says so at the top.
Read this once and the rest of the docs stop being ambiguous.
Which product am I in?
| SynapseX Apps | SynapseX Platform API | |
|---|---|---|
| Surfaces | Chat, Desktop, CLI | Your own application |
| Where you sign in | chat.synapsex.ai | platform.synapsex.ai |
| Who it is for | People using the AI assistant | Developers calling the OpenAI-compatible LLM API |
| How you sign in | Continue with Google | Email + password, or Continue with Google |
| How you pay | Monthly or yearly subscription plan (Free, Go, Plus, Pro, Business) | Prepaid credits only — no subscription |
| Credit unit | 1 credit = US$0.01 | 1 credit = US$1.00 |
| API key format | sxc_… | sk-synapsex-… |
| Key scope | compute | chat:write |
| What the key authenticates | SynapseX Desktop and the SynapseX CLI | /api/v1/chat/completions |
| Model catalog | 6 models, Chat models | 11 models, Models and pricing |
| Where you watch spending | Settings → Billing and Settings → Usage | /dashboard/usage and /dashboard/credits |
| Docs section | Chat · Desktop · CLI · Your account | Platform API |
Desktop and the CLI belong to the chat account, not the API platform. They
authenticate with an sxc_ key minted in SynapseX Chat. This surprises people
who assume a developer tool must use the developer platform.
Are accounts, credits and keys shared between the two products?
No. They are completely separate systems.
- A SynapseX Chat subscription grants you nothing on the API platform. Even on the Business plan, an API-platform workspace still needs its own prepaid credits before a single API call will succeed.
- API-platform credits grant you nothing in SynapseX Chat. They do not raise a chat plan’s monthly message or token allowance.
- The two credit balances use different units and no balance ever moves between the products. Never convert a number from one product’s pages into the other’s — 100 credits means US$1 in Chat and US$100 on the API platform.
- Signing up on one site does not create an account on the other. If you want both, you sign up twice.
Which API key do I need?
The two key formats are not interchangeable, and pasting one into the other product simply fails authentication.
sxc_…— minted in SynapseX Chat under Settings → API Keys. Scopecompute. Use it for SynapseX Desktop and the SynapseX CLI. See Personal API keys for Desktop and CLI.sk-synapsex-…— created in the API-platform console under/dashboard/api-keys. Scopechat:write. Use it for the Platform API. See Manage workspace API keys.
Full background on both formats and what a scope actually enforces: API keys and scopes.
How is a model id written on each surface?
The same model has three spellings. They are not interchangeable, and this is a common cause of a rejected request.
| Surface | Format | Example |
|---|---|---|
| SynapseX Chat | synapsex:<id> | synapsex:synapsex-atlas-7b-v1 |
SynapseX CLI (-m) | synapsex/<id> | synapsex/synapsex-atlas-7b-v1 |
| Platform API request body | the bare id | synapsex-atlas-7b-v1 |
The catalogs differ too, not just the spelling. The CLI carries its own catalog —
run synapsex-code models to see exactly which ids your installed CLI accepts.
Verify either catalog yourself. The Chat catalog is public, no key required:
curl -s https://chat.synapsex.ai/api/modelsThe Platform API catalog needs your key:
curl -sS https://platform.synapsex.ai/api/v1/models \
-H "Authorization: Bearer sk-synapsex-YOUR-API-KEY"Read the API catalog at runtime rather than hard-coding ids — but treat it as a catalog, not a permission list: an id can be listed there and still be refused with a 403 that names the ids you may use. See Listing models.
Where do I see what I am spending?
- SynapseX Apps — open Settings in Chat. The Billing tab shows your current plan and your month-to-date messages and tokens against the plan quota. The Usage tab shows token consumption and estimated cost, broken down by model and by day.
- SynapseX Platform API —
/dashboard/usageshows total cost, tokens and requests over a window you choose, with a per-model breakdown and the most recent requests./dashboard/creditsshows your wallet balance, your monthly spend limit and the credit packs.
Check that the chat plan catalog is live
The chat plan catalog is served from a public endpoint, so you can confirm the current plans, limits and prices yourself without an account:
curl -s https://chat.synapsex.ai/api/billing/plansYou get back a JSON object with a plans array. Each entry carries:
id— the plan identifier (free,go,plus,pro,business).name,descriptionand, on some plans, abadge.limits—messagesPerMonth,tokensPerMonth,customAgents,knowledgeBases,fileStorageGBandteamMembers. A value of-1means unlimited.prices.monthlyandprices.yearly, each with aUSDand anEURblock containingamountandamountCents.
The response also contains Stripe price identifiers. Ignore them — they are implementation detail, they change, and they are of no use to you.
To read just the plan ids and monthly USD amounts:
curl -s https://chat.synapsex.ai/api/billing/plans \
| python3 -c 'import json,sys; d=json.load(sys.stdin); [print(p["id"], p["prices"]["monthly"]["USD"]["amount"]) for p in d["plans"]]'Where to go next
If you are using the apps:
| Page | What it is for |
|---|---|
| Chat plans and pricing | Compare the five chat plans and change tier |
| Personal API keys for Desktop and CLI | Mint an sxc_ key, or approve a device with a short code |
| Export or delete your chat data | Take your conversations with you or wipe them |
If you are building on the API:
| Page | What it is for |
|---|---|
| Workspaces and teammates | Create your API-platform account and share a workspace |
| Manage workspace API keys | Create, limit, rotate and revoke sk-synapsex- keys |
| API credits, spend limits and alerts | Buy credits, cap spend, and read the 402 |