This page lists every fixed limit on a server, with what happens when you reach it. The plan sets the rest, and the page that covers each feature explains how to work within it.
8 on one server and 32 across all servers, for each account. One more does not connect: its socket closes with code 4029, and the page shows Connection limit reached. Close other console sessions first.
Command length
1,000 characters. The console cuts a longer command at that length, and POST /command answers 422.
Commands per second
20 on one console. The console drops each command over that and shows Slow down.
We count these actions per account and per server. Each limit covers a rolling window.
Action
Most per window
Window
Power actions: start, stop, restart and kill
24
60 seconds
Wakes of a free server
48
60 seconds
Software actions: changes, installs, addon updates, resource pack and Java settings changes, and Bedrock pack imports
8
10 minutes
Compressing and extracting archives
24
60 seconds
Downloads from a URL
24
60 seconds
Import tests and starts
12
5 minutes
New databases
24
60 seconds
Backup restores
8
5 minutes
A request over the limit fails, and the dashboard shows Too many requests for this action. Please wait and try again. Through the API, the request answers 429:
JSON
{
"detail": {
"error": "rate_limited",
"message": "Too many requests for this action. Please wait and try again.",
"action": "container.power",
"retry_after_seconds": 60
}
}
action is container.power, container.wake, container.software, container.file_compress, container.file_pull, container.import, container.database or container.backup_restore. retry_after_seconds and the Retry-After header give the length of the window. A request refused this way does not count towards the limit.
Taking and restoring snapshots have no rate limit of their own. A server runs one snapshot or restore at a time instead.
Every API request also counts towards the limits for your account as a whole, which Rate limits describes.
Free servers sleep when nobody plays, and leave out backups, databases, schedules and snapshot downloads. How free servers work lists every difference.