Upload, store and serve images with a single API call.
Free forever. No limits. No credit card.
POST /api/v1/upload
curl -X POST https://imgstorage1.vercel.app/api/v1/upload \
-H "x-api-key: tdrive_your_key_here" \
-F "image=@photo.jpg"
// Response
{
"success": true,
"url": "https://imgstorage1.vercel.app/i/abc123",
"id": "abc123"
}Three explicit steps without marketing fluff.
Register using GitHub. Our system instantly provisions a secure API key bounded to your profile. No manual approval.
Execute a POST request attaching your image. The API handles compression mapping automatically on insertion.
Consume the returned strict HTTPS URL. Asset delivery is automatically configured with proper caching layers.
const uploadImage = async (file) => {
const formData = new FormData();
formData.append('image', file);
const res = await fetch('https://imgstorage1.vercel.app/api/v1/upload', {
method: 'POST',
headers: {
'x-api-key': 'tdrive_your_api_key'
},
body: formData
});
return await res.json();
}Response Payload
// Response
{
"success": true,
"url": "https://imgstorage1.vercel.app/i/abc123",
"id": "abc123"
}One endpoint to upload. One URL to serve. No complex SDKs or configurations required.
Zero storage limits, zero bandwidth fees, and no credit card required at any stage.
Images are served globally through high-speed edge networks and infrastructure.
Upload and display images directly from any frontend framework with no proxy setup.
Enterprise-grade secure authentication. Provisions multiple scoped keys per account.
Clone the repo and deploy it to your own server, or use our fully managed hosted version.
Our API surface is intentionally restricted to primary functions. Zero excessive wrappers.
"I routinely found myself setting up complex AWS S3 distributions just to host simple assets for hobby software. I realized the Telegram Bot API ecosystem provided highly stable infrastructure that could be repurposed as a robust CDN."
"ImgStorage is structured exactly how I build my own utilities: zero graphical configuration layers, strict API token boundaries, and high reliability."
[PLACEHOLDER] Maintainer
Principal Developer
[PLACEHOLDER] Actively evaluating beta telemetry. Testimonials will be sourced upon verifying performance metrics.
Skip the payment details context switch. Generate an API token and evaluate the routing logic presently.
Get your free API key →Takes less than 60 seconds · Free forever