Back to Portfolio
CDN External API Access

Use our CDN in your app

Store and serve files through a private GitHub‑backed CDN with per‑key rate limiting. Apply below — a human reviews every request before an API key is issued.

Private & Secure
Files in private repos, served via authenticated proxy. Raw GitHub URLs never exposed.
Per-key Rate Limits
Every API key has its own minute / hour / day limits enforced server-side.
Auto-scaling Storage
New repos are provisioned automatically when storage fills — no action needed.

Plans & Rate Limits

Free
req / min10
req / day1,000
max file5 MB
Free
Popular
Basic
req / min30
req / day10,000
max file20 MB
By request
Pro
req / min120
req / day50,000
max file49 MB
By request
Enterprise
req / min600
req / day200,000
max file49 MB
Contact us

Request Access

All fields marked * are required

Check Application Status

Enter the email you used when applying.

Quick Start

const form = new FormData();
form.append("file", file);
form.append("type", "avatar");
form.append("context", `user:${userId}`);

const res = await fetch(
  "https://meetbhingradiya.vercel.app/api/cdn/external/upload",
  {
    method: "POST",
    headers: { "Authorization": `Bearer ${CDN_API_KEY}` },
    body: form,
  }
);

const { assetId, cdnUrl } = await res.json();
// cdnUrl → https://meetbhingradiya.vercel.app/api/cdn/<assetId>

FAQ