Skip to Content
Accounts, plans and API keysOverview

Accounts, plans and billing

This section shows you how to get an account, pay for it, mint the right kind of API key and keep an eye on what you are spending. By the end of it you will know which of the two SynapseX products you are paying for, which key format that product issues, and where its spending is reported.

Read this page first. Almost every billing question in SynapseX comes down to one fact: SynapseX is two products with two separate accounts, two separate wallets and two incompatible key formats.

What is the difference between chat.synapsex.ai and platform.synapsex.ai?

SynapseX ChatSynapseX API platform
Wherechat.synapsex.ai platform.synapsex.ai 
Who it is forPeople using the AI assistant in a browserDevelopers calling the OpenAI-compatible LLM API
How you sign inContinue with GoogleEmail + password, or Continue with Google
How you payMonthly or yearly subscription plan (Free, Go, Plus, Pro, Business)Prepaid credits only — no subscription
Credit unit1 credit = US$0.011 credit = US$1.00
API key formatsxc_…sk-synapsex-…
Key scopecomputechat:write
What the key authenticatesSynapseX Desktop and the SynapseX CLIThe Platform API (/api/v1/chat/completions)
Where you watch spendingSettings → Billing and Settings → Usage/dashboard/usage and /dashboard/credits

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.
  • 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.

Full background on both formats and what a scope actually enforces: API keys and scopes.

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/plans

You get back a JSON object with a plans array. Each entry carries:

  • id — the plan identifier (free, go, plus, pro, business).
  • name, description and, on some plans, a badge.
  • limitsmessagesPerMonth, tokensPerMonth, customAgents, knowledgeBases, fileStorageGB and teamMembers. A value of -1 means unlimited.
  • prices.monthly and prices.yearly, each with a USD and an EUR block containing amount and amountCents.

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 do I see what I am spending?

  • SynapseX Chat — open Settings. 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 API platform/dashboard/usage shows total cost, tokens and requests over a window you choose, with a per-model breakdown and the most recent requests. /dashboard/credits shows your wallet balance, your monthly spend limit and the credit packs.

Pages in this section

PageWhat it is for
SynapseX Chat plans and pricingCompare the five chat plans and change tier
Personal API keys for Desktop and CLIMint an sxc_ key, or approve a device with a short code
Workspaces and teammatesCreate your API-platform account and share a workspace
Manage workspace API keysCreate, limit, rotate and revoke sk-synapsex- keys
API credits, spend limits and alertsBuy credits, cap spend, and read the 402
Export or delete your chat dataTake your conversations with you or wipe them