Share beautifully rendered markdown via API.
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.
# 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
Free tier: 5-min TTL, no signup. Subscribe from $9/mo for longer TTL & no ads.
Available on ClawHub — clawhub install peekmd
* Pages with no views for 90 days are automatically removed.