⚡ High Speed CDN · Powered by Synox Database

SYNOX
CLOUD CDN

Fast. Reliable. Developer Friendly.

UPLOAD YOUR FILES

Drop your images and videos — we'll handle storage & CDN delivery automatically.

☁️

CLICK OR DRAG & DROP

Upload images or videos — max 100MB

.jpg.png.gif.webp.svg.avif.mp4.webm.mov

PLATFORM STATS

Real-time platform statistics

WHY SYNOX?

Built for developers who care about performance.

Lightning Fast

Files served via Synox Database with edge delivery for minimal latency worldwide.

Secure by Default

File type validation, sanitized filenames, rate limiting, and directory traversal protection built-in.

Video Streaming

Videos streamed from Synox Database with HTTP Range Request support for smooth playback.

Image CDN

Images stored on Synox Database with CDN delivery. Supports JPG, PNG, GIF, WebP, SVG, AVIF.

Clean URLs

Short, readable CDN URLs. cdn.synoxcloud.xyz/path/filename.ext — no random tokens.

Simple API

Single POST endpoint for uploads. JSON responses. Easy to integrate in any project or bot.

Admin Panel

Full admin dashboard to manage files: upload, delete, rename, move, and view usage stats.

No Account Needed

Public upload to /storage/ folder. No signup, no hassle. Just drag, drop, and copy URL.

STORAGE STATUS

Live status of all storage backends

HOW IT WORKS

Upload and share files in 4 simple steps.

01
📂

Pick Your File

Drag & drop or click to select. Supports JPG, PNG, GIF, WebP, SVG, AVIF, MP4, WebM, MOV up to 100MB.

02

Instant Upload

Files go straight to Synox Database and served via CDN edge delivery worldwide.

03
🔗

Copy Your URL

Get a clean CDN link instantly. Share it anywhere — Discord, Telegram, websites, or your own app.

04
🚀

Lightning Fast Delivery

Your file is cached globally. Anyone who opens the link gets it delivered at full speed, worldwide.

SUPPORTED FORMATS

All the formats you'd ever need

🖼️ IMAGE FORMATS

JPG / JPEGPNGGIFWebPSVGAVIF

Stored on Synox Database · Served via CDN

🎬 VIDEO FORMATS

MP4WebMMOV

Stored on Synox Database · Streamed with Range Request

QUICK API

Integrate Synox CDN in seconds

POST /api/upload
// Upload a file using fetch
const formData = new FormData();
formData.append('file', file); // File | Blob

const response = await fetch('https://cdn.synoxcloud.xyz/api/upload', {
  method: 'POST',
  body: formData,
});

const result = await response.json();
// {
//   "success": true,
//   "url": "https://cdn.synoxcloud.xyz/storage/abc123.png",
//   "filename": "abc123.png",
//   "path": "/storage/abc123.png",
//   "size": "248 KB",
//   "type": "image/png"
// }
📖 Full API Documentation