peekmd

Share beautifully rendered markdown via API.

GitHub stars

AI agents, bots, and scripts generate markdown — but Slack, Discord, and email mangle it. peekmd gives you a single API call to turn markdown into a shareable, beautifully rendered web page with syntax highlighting, dark mode, and auto-expiry.

One API call

# Post markdown, get a shareable link
curl -X POST https://peekmd.dev/api/create \
  -H "Content-Type: application/json" \
  -d '{"markdown": "# Hello\nYour markdown here."}'

# Response:
{ "url": "https://peekmd.dev/abc123", "slug": "abc123" }
# pip install requests
import requests

resp = requests.post(
    "https://peekmd.dev/api/create",
    json={"markdown": "# Hello\nYour markdown here."}
)
print(resp.json()["url"])
# https://peekmd.dev/abc123
const resp = await fetch("https://peekmd.dev/api/create", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ markdown: "# Hello\nYour markdown here." })
});
const { url } = await resp.json();
console.log(url);
// https://peekmd.dev/abc123
View on GitHub

Your demo page (expires in 5 minutes):

Opens in a new tab

Free tier: 5-min TTL, no signup. Subscribe from $9/mo for longer TTL & no ads.

Available on ClawHubclawhub install peekmd

Syntax highlighting
190+ languages
Dark & light mode
Auto-detected
Auto-expiring
5m to permanent
Burn after reading
One-click delete

How it works

1
POST
Send markdown to the API
2
URL
Get a shareable link back
3
Share
Anyone can view the rendered page

Plans

Free
$0
  • 5-minute page TTL
  • Unlimited pages
  • Syntax highlighting
  • Ad banner on pages
Current default
Basic
$9 /mo
  • 500 pages / month
  • 30-day page TTL
  • No ads
  • API key access

Built for