LINKFORGE
Upload any file image, audio, video, document and get a permanent shareable URL in seconds. Free. No account needed.
Max 100MB per file
Developer API
Use LinkForge from your bots, apps, or scripts. Free, no rate limits, permanent file storage. Generate a key and start uploading instantly.
Your API key is generated instantly and never expires. Store it safely you can generate a new one anytime.
file.curl -X POST https://linkforgei.vercel.app/api/upload \ -H "x-api-key: lf_your_key_here" \ -F "file=@photo.jpg"
const axios = require('axios');
const FormData = require('form-data');
async function uploadToLinkForge(buffer, filename) {
const form = new FormData();
form.append('file', buffer, filename);
const res = await axios.post('https://linkforgei.vercel.app/api/upload', form, {
headers: {
'x-api-key': 'lf_your_key_here',
...form.getHeaders()
}
});
return res.data.url;
}
// Usage in your bot:
const url = await uploadToLinkForge(imageBuffer, 'photo.jpg');
await sock.sendMessage(from, { text: 'Here is your link: ' + url });
{
"success": true,
"url": "https://res.cloudinary.com/dejkqmt3q/image/upload/v.../linkforge/photo.jpg",
"type": "image",
"size": 204800,
"filename": "photo.jpg",
"public_id": "linkforge/photo_abc123",
"format": "jpg"
}
What is LinkForge
LinkForge is a free file hosting service built by ShefzyTech. Upload any file and get a permanent, shareable URL that you can use anywhere in your WhatsApp bot, on social media, or inside your own apps.
Files are stored on Cloudinary's infrastructure and remain accessible indefinitely. No account creation required to use the web interface. Developers can integrate via the free REST API.