Mendukung semua format gambar & video • Chunk upload untuk file besar
Klik atau tarik file ke sini
Mendukung file ukuran besar ⚡
Integrasikan MediaDrop dengan aplikasi Anda menggunakan REST API.
https://media-drop.texaproject.com/index.php
| Method | Endpoint | Auth | Deskripsi |
|---|---|---|---|
| POST | ?api=upload | ✅ | Upload file langsung |
| POST | ?api=upload_chunk | ✅ | Upload file via chunk |
| GET | ?api=files | ✅ | List semua file aktif |
| GET | ?api=file&id=... | ✅ | Detail satu file |
| DELETE | ?api=delete&id=... | ✅ | Hapus file |
| GET | ?api=status | — | Health check (public) |
| GET | ?api=docs | — | Dokumentasi lengkap |
curl -X POST \
-H "X-API-Key: mdk_707f12e52a1b57e3710069fcd7d6c68ccf14030fda9a1261" \
-F "file=@photo.jpg" \
-F "expiration=1h" \
"https://media-drop.texaproject.com/index.php?api=upload"
curl -H "X-API-Key: mdk_707f12e52a1b57e3710069fcd7d6c68ccf14030fda9a1261" \
"https://media-drop.texaproject.com/index.php?api=files"
curl -X DELETE \
-H "X-API-Key: mdk_707f12e52a1b57e3710069fcd7d6c68ccf14030fda9a1261" \
"https://media-drop.texaproject.com/index.php?api=delete&id=file_xxx.jpg"