Powered by Hostify & World of Technology Team. Integrate seamless image and video uploads into your apps with our robust REST API.
Test the API directly from your browser to ensure connectivity.
Base URL: https://upload.hostify.indevs.in
Upload a single file. Field name must be file. Returns a direct URL and a unique delete key.
curl -X POST https://upload.hostify.indevs.in/api/upload \
-F "file=@image.jpg"
Upload up to 10 files at once. Field name must be files (repeated). Returns an array of URLs.
curl -X POST https://upload.hostify.indevs.in/api/upload/multi \
-F "files=@a.jpg" \
-F "files=@b.mp4"
Get metadata for a specific file by its ID. Note: The delete key is not exposed in this endpoint for security.
curl https://upload.hostify.indevs.in/api/file/your-file-id
Returns the last 20 uploaded files with their URLs and metadata.
curl https://upload.hostify.indevs.in/api/recent
Returns total file count, size breakdown by type, and platform information.
curl https://upload.hostify.indevs.in/api/stats
Permanently delete a file. Requires the deleteKey returned at upload time.
curl -X DELETE "https://upload.hostify.indevs.in/api/delete/uuid?key=YOUR_DELETE_KEY"
Returns detected platform, base URL, and current file size limits.
curl https://upload.hostify.indevs.in/api/info
Follow us for tutorials, coding tips, APK updates, and tech news from Zimbabwe and beyond.
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'])