India edge Global edge Origin

Upload, Transform &
Serve Media Worldwide

Self-hosted media CDN with GPU video pipeline, 5 India edge POPs and a global edge network spanning 119+ cities. Multi-stream Fast Download saturates the customer's line.

5India POPs
119+Global edge POPs
51 msTTFB · cached HIT
Fast Download streams
Faster than origin
30 day
Edge cache TTL
94%
Line saturation · Fast DL
99.9%
Uptime target
Real measured · cached HIT on SaskStore edge · Mumbai · Delhi · Bangalore · Chennai · Kolkata + 119 worldwide POPs

Multi-Stream Fast Download · Pro feature

Slice-aligned parallel range fetching saturates the customer's pipe. Measured 94% line utilisation on a 40 Mbps fibre vs 60% with a single browser GET. Resume-on-failure, network-change tolerant, infra-aware.

Parallel streams
1.9×vs single-stream
94%Line saturation
📷

Image Transforms

Resize, crop, format convert (WebP, AVIF, JPG, PNG), all on-the-fly via URL query params. Cached on NVMe SSD.

🎥

Video Processing

Auto-thumbnail generation, H.264 transcode for web streaming, multi-threaded encoding. Upload any format.

Edge Network · 5 India POPs

Mumbai, Delhi, Bangalore, Chennai, Kolkata edge cache. NVMe SSD origin. 30 day cache TTL. Real measured 51ms TTFB from Jaipur fiber on cached HIT.

🔑

API Key Auth

Per-key upload limits, allowed origins, file type restrictions. Full control over who can upload what.

📊

Usage Analytics

Track uploads, bandwidth, requests per day. Storage usage per API key. Real-time dashboard.

🛡️

India Hosted

Your data stays in India. Self-hosted on enterprise hardware with ZFS RAID storage. 99.9% uptime.

Simple Pricing

Start free, scale when ready. 18% GST applicable on paid plans.

Loading plans...

Dead Simple API

// Upload
curl -X POST https://media.sasksoftware.in/api/v1/upload \
  -H "X-API-Key: nxs_your_key" \
  -F "file=@photo.jpg"

// Response (URLs auto-served via SaskStore edge)
{ "id": "abc123", "url": "https://cdn.sasksoftware.in/media/abc123" }

// Serve with transforms (cached at India POPs)
https://cdn.sasksoftware.in/media/abc123?w=400&h=300&format=webp&q=80

// HTML responsive image
<img src="https://cdn.sasksoftware.in/media/abc123?w=800&format=webp"
     srcset="...?w=400&format=webp 400w, ...?w=800&format=webp 800w"
     loading="lazy" />