pastebin for the AI age. paste terminal output, get clean shareable markdown. auto-strips ANSI garbage, renders beautifully.

bash — 80x24
start pastingno signup required
$

paste something

Markdown preview appears here...

$

sendy --help

pastebin for the AI age. built for terminal output.

--cleanup
ANSI strip

Strips escape codes, normalizes line endings, collapses blank lines. Paste raw terminal output, get clean text.

--preview
live render

Real-time markdown preview as you type. Headers, code blocks, tables, links — all rendered instantly.

--lock
password

Optional password protection. Encrypted at rest, required to view. Share sensitive output safely.

--share
permalink

Every paste gets a unique short URL. Share via link, embed in docs, reference in issues.

--api
POST /api

JSON API for programmatic access. Pipe from your terminal, CI/CD, or scripts. cURL-friendly.

$

quick start

terminal

# paste from clipboard

$ pbpaste | curl -s -X POST sendy.md/api/pastes \

-H "Content-Type: application/json" \

-d '{"content": "$(cat -)"}'

# pipe command output

$ kubectl logs deploy/api --tail=100 | sendy

# response

{ "slug": "bTKxXxuA", "url": "https://sendy.md/bTKxXxuA" }