Version 1.0.0 Serverless Live

Minecraft Bedrock Dedicated Servers

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.

Total Builds 0
Latest Stable 1.21.0.03
API Latency ~35ms
Update Cron 6 Hours
LOCAL ENGINE DETECTOR

Detected: Linux Server

Latest Stable Release: Loading...

Archived Build Database

Select a Bedrock release build to access downloads

Version Archive 0 builds
[SYNCHRONIZING RELEASES...]
🗂️

Select a Build

Direct links, wget scripts and mirrors will load here.

FOR SYSTEM DEVELOPERS & HOSTS

Public serverless REST API

Integrate dynamic downloads into your cPanel eggs, shell scripts, discord bots, or docker configurations. CDN Cached, no rate limit.

$ curl -X GET https://bedrockbuilds.com/api/v1/latest.json
RESPONSE STREAM (JSON)
{
  "status": "idle",
  "message": "Click 'SEND REQUEST' to test the static API live."
}
            
01

WGET DOWNLOADS

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"
        
02

PTERODACTYL EGG

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')
        
03

CRON REFRESH

Runs harian schedules ensuring downloads are identical with Azure CDN:

on:
  schedule:
    - cron: '0 */6 * * *'
  workflow_dispatch: