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.
All fields marked * are required
Enter the email you used when applying.
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>