Simple file upload and download service for developers using HTTP requests in CLI.
This resets after 24h
Description: Upload a file
cURL example:
curl -X POST -F "file=@/path/to/your/file.txt" https://fitra.adhd.sh/upload
Description: Download a file using the ID and filename from upload response
cURL example:
curl -O https://fitra.adhd.sh/uploads/{fileID}/{filename}
Description: Check storage usage and capacity
cURL example:
curl https://fitra.adhd.sh/storage
Description: Check service health
cURL example:
curl https://fitra.adhd.sh/health
# 1. Upload a file
curl -X POST -F "file=@myfile.txt" https://fitra.adhd.sh/upload
# Response will include:
# {
# "id": "abc123...",
# "filename": "myfile.txt",
# "url": "https://fitra.adhd.sh/uploads/abc123.../myfile.txt"
# }
# 2. Download the file
curl -O https://fitra.adhd.sh/uploads/abc123.../myfile.txt
Upload files directly from your browser. Files are temporary and automatically deleted after 24 hours.
FITRA (File Transfer API) is a lightweight, developer-friendly file sharing service designed for CLI usage and automation.
Files are automatically deleted after 24 hours. This service is designed for temporary file sharing and should not be used for permanent storage.
Matrix: @root@adhd.sh
Discord: nu11ed