A brutalist high-contrast repository archiving every official Minecraft Bedrock dedicated server build. Fetch server links instantly or consume them via our zero-rate-limit public API.
Latest Stable Release: Loading...
Select a Bedrock release build to access downloads
Select a Build
Direct links, wget scripts and mirrors will load here.
Integrate dynamic downloads into your cPanel eggs, shell scripts, discord bots, or docker configurations. CDN Cached, no rate limit.
{
"status": "idle",
"message": "Click 'SEND REQUEST' to test the static API live."
}
Query our latest stable build via terminal wget automation:
DL_URL=$(curl -s https://bedrockbuilds.com/api/v1/latest.json | grep -oP '"linux":\s*"\K[^"]+')
wget -O server.zip "$DL_URL"
Map version variables directly to your install script:
# In install script block
JSON=$(curl -sL https://bedrockbuilds.com/api/v1/latest.json)
DOWNLOAD_URL=$(echo $JSON | jq -r '.data.download_urls.linux')
Runs harian schedules ensuring downloads are identical with Azure CDN:
on:
schedule:
- cron: '0 */6 * * *'
workflow_dispatch: