Share text, images, and files up to 10MB. No accounts, no tracking, globally distributed.
| Drag files here or click to upload |
Drag and drop files above, or click to browse. Markdown files are rendered automatically.
# Basic upload
curl --data-binary @myfile.txt https://getpost.nibox.de/
# Upload Text-Object from clipboard (macOS)
pbpaste | curl --data-binary @- https://getpost.nibox.de/
# Custom expiration (1 hour)
curl -H "X-TTL: 3600" --data-binary @file.txt https://getpost.nibox.de/
&raw for direct file access# Custom expiration
X-TTL: 3600 # Seconds until expiry
# Parameters
?raw # Return original file
?cors=1 # Enable CORS headers
# GitHub Actions artifact sharing
- run: ./deploy.sh | curl --data-binary @- https://getpost.nibox.de/
# Screenshot sharing (macOS)
screencapture -c && pngpaste - | curl --data-binary @- https://getpost.nibox.de/
# Log sharing
tail -f app.log | curl --data-binary @- https://getpost.nibox.de/