pastebin for the AI age. paste terminal output, get clean shareable markdown. auto-strips ANSI garbage, renders beautifully.
paste something
Markdown preview appears here...
sendy --help
pastebin for the AI age. built for terminal output.
--cleanupStrips escape codes, normalizes line endings, collapses blank lines. Paste raw terminal output, get clean text.
--previewReal-time markdown preview as you type. Headers, code blocks, tables, links — all rendered instantly.
--lockOptional password protection. Encrypted at rest, required to view. Share sensitive output safely.
--shareEvery paste gets a unique short URL. Share via link, embed in docs, reference in issues.
--apiJSON API for programmatic access. Pipe from your terminal, CI/CD, or scripts. cURL-friendly.
quick start
# 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" }