Official Free API

The Best Free File Hosting API
for Developers

Powered by Hostify & World of Technology Team. Integrate seamless image and video uploads into your apps with our robust REST API.

View Documentation
50MB
Max Image Size
500MB
Max Video Size
Storage Potential
100%
Free Access

System Status & Testing

Test the API directly from your browser to ensure connectivity.

API Reference

Base URL: https://upload.hostify.indevs.in

POST /api/upload

Upload a single file. Field name must be file. Returns a direct URL and a unique delete key.

cURL
curl -X POST https://upload.hostify.indevs.in/api/upload \
-F "file=@image.jpg"
POST /api/upload/multi

Upload up to 10 files at once. Field name must be files (repeated). Returns an array of URLs.

cURL
curl -X POST https://upload.hostify.indevs.in/api/upload/multi \
-F "files=@a.jpg" \
-F "files=@b.mp4"
GET /api/file/:id

Get metadata for a specific file by its ID. Note: The delete key is not exposed in this endpoint for security.

cURL
curl https://upload.hostify.indevs.in/api/file/your-file-id
GET /api/recent

Returns the last 20 uploaded files with their URLs and metadata.

cURL
curl https://upload.hostify.indevs.in/api/recent
GET /api/stats

Returns total file count, size breakdown by type, and platform information.

cURL
curl https://upload.hostify.indevs.in/api/stats
DELETE /api/delete/:id?key=deleteKey

Permanently delete a file. Requires the deleteKey returned at upload time.

cURL
curl -X DELETE "https://upload.hostify.indevs.in/api/delete/uuid?key=YOUR_DELETE_KEY"
GET /api/info

Returns detected platform, base URL, and current file size limits.

cURL
curl https://upload.hostify.indevs.in/api/info

Join Our Tech Community

Follow us for tutorials, coding tips, APK updates, and tech news from Zimbabwe and beyond.

Simple Integration for Developers

Integrate our free upload API into your Python, JavaScript, PHP, or C# applications in minutes.

# Python Example
import requests

url = "https://upload.hostify.indevs.in/api/upload"
files = {'file': open('image.jpg', 'rb')}
response = requests.post(url, files=files)

print(response.json()['url'])
View Full API Documentation