GetPost

Libre linking for poems and memes

Share text, images, and files up to 10MB. No accounts, no tracking, globally distributed.

Drag files here or click to upload

Quick Start

Web Upload

Drag and drop files above, or click to browse. Markdown files are rendered automatically.

Command Line

# 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/

Features

Advanced Usage

Headers & Parameters

# Custom expiration
X-TTL: 3600          # Seconds until expiry

# Parameters
?raw                 # Return original file
?cors=1              # Enable CORS headers

Integration Examples

# 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/