Plain Text Sharing

PlainRaw_

Share Raw Text without HTML or Styling.

raw text/plain output
curl friendly
private by default

Why PlainRaw? Unlike traditional pastebins that wrap content in HTML, PlainRaw returns pure text/plain — ideal for curl, CI/CD pipelines, and programmatic access. The secret edit link model means you can share a read-only URL while keeping edit access private, all without creating an account.

Frequently Asked

What is PlainRaw?

A minimal text sharing service. Create a snippet, get two links: one for editing (private) and one for sharing (public, returns raw text/plain).

Do I need an account?

No. PlainRaw is completely anonymous. No registration, no login, no subscription. Just text.

How does the edit link work?

The edit link contains a secret key baked into the URL. Anyone with this link can edit. Lose it, and there's no recovery.

What's special about the raw link?

It returns Content-Type: text/plain — pure text, no HTML. Perfect for curl, wget, scripts, or embedding in tools.

How long are snippets stored?

Indefinitely, as long as the service runs. No auto-expiration.

Use Cases

Built for engineers who need raw text without HTML wrappers.

Feature Flags

Lightweight feature toggles. App fetches raw on startup. Edit link changes true/false instantly — no redeploy, no config server.

curl -s .../raw/flags | grep DARK_MODE

Kill Switch

Runtime circuit breaker. Service polls raw link. Emergency? Edit to 'disabled' and it's off globally in seconds.

enabled=true → enabled=false

LLM Prompt Hosting

Store prompts via edit link. Inference fetches raw — no HTML/markdown contaminating your prompt. AI engineers get this.

curl .../raw/prompt | llm chat

Webhook Debug Payloads

Store sample payloads for third-party integrations. Share raw link in docs, Slack, issues. No JSON copying.

curl .../raw/payload | httpie POST

Incident Broadcast

One editor, N readers. Post incident notes via edit link. Team reads raw. No 'everyone can edit' chaos like Google Docs.

Raw link in #incidents channel

Temp Credentials

Share tokens/keys temporarily. Recipient uses raw link. Done? Edit to revoke. More controlled than Slack or email.

Edit to clear after use

Dotfiles Snippets

Host .bashrc/.zshrc fragments. New machine? curl | source. Edit link updates all your devices instantly.

curl .../raw/aliases | source

Cross-device Clipboard

Edit on laptop. View raw on phone. No account, no app. Just a URL that holds your current working text.

Phone browser → raw link

How We Compare

PlainRaw is built for developers who need raw text output and scriptable access.

Feature PlainRaw Pastebin Hastebin Rentry Gist
Raw text/plain output
Content-Type: text/plain, no HTML
Anonymous creation
No account required
Editable without account
Update or delete content
curl-friendly
CLI / script access
No ads or tracking
Clean, privacy-respecting
Syntax highlighting
Code colorization
Persistent raw links
Links never expire
Unlisted / private mode
Not publicly indexed
Expiration / TTL
Auto-delete after time
Yes Partial No

PlainRaw exists because I couldn't find a tool that did this properly.

I often just need a link that returns plain text — not a webpage, not a document, not something wrapped in UI, scripts, or formatting.

Every existing tool added something extra: accounts, ads, rendering, tracking, or assumptions about how the text should be used. None of that worked when the goal was simply text as text.

So I built PlainRaw. A small tool that lets me write text, edit it when needed, and share a raw link that returns exactly what I wrote — nothing more.

@meditic