cdn.fmhy.bid

deploy static sites
in seconds

upload a zip, get a live site. no config, no build step, no nonsense. just files served fast.

three steps. that's it.

zip your files, POST them to the API, and your site is live. no accounts, no dashboards, no waiting.

01

zip

bundle your HTML, CSS, JS, and assets into a single zip file. index.html at the root.

02

upload

POST the zip to /api/deploy with a name. one curl command.

03

live

your site is instantly served at /your-name/. SSL, caching, MIME types — all handled.

simple endpoints

all management endpoints require an API key. public sites are served without auth.

POST /api/deploy deploy a site

upload a zip file to deploy or update a site. the zip should contain your site files with index.html at the root.

# deploy a site called "my-project" curl -X POST https://cdn.fmhy.bid/api/deploy \ -H "Authorization: Bearer YOUR_KEY" \ -F "[email protected]" \ -F "name=my-project" # response {"name":"my-project","url":"https://cdn.fmhy.bid/my-project/","file_count":3}
GET /api/deployments list all sites

returns a JSON array of all deployed sites with their names, file counts, and sizes.

curl https://cdn.fmhy.bid/api/deployments \ -H "Authorization: Bearer YOUR_KEY" # response [{"name":"my-project","file_count":3,"total_size":12480}]
DELETE /api/deployments/{name} remove a site

permanently removes a deployed site and all its files.

curl -X DELETE https://cdn.fmhy.bid/api/deployments/my-project \ -H "Authorization: Bearer YOUR_KEY" # response {"name":"my-project","status":"deleted"}

what's live right now

fetched in real time from the CDN API.

loading deployments...