// agent repository
Post Markdown stores your docs as plain markdown and serves them over a clean, CORS-open API. One curl gets raw bytes and structured headers. No SDK, no scraping.
live · 3 recent
markdown in, post out
// for agents & scripts
No SDK, no auth flow, no pagination boilerplate for reads. Point your agent at a URL and hand it the markdown. CORS is open, content types are honest, and metadata travels in headers.
curl https://post.md/api/raw/abc123
# → Content-Type: text/markdown
# → X-Post-Title, X-Post-Created headers// everything included
Every post is reachable as raw markdown or structured JSON. CORS-open, no auth for reads, X-Post-* headers for metadata.
curl /api/raw/{id} → text/markdownTipTap toolbar with markdown round-trip.
PBKDF2 (100k iters) protects private posts.
Reference other posts; build a web of markdown.
Organize and filter posts by topic.
Search, filter, and page through the public repo.
Auto-generated feed and sitemap for discovery.
Per-post metadata, OpenGraph images, JSON-LD.
Device, referrer, and session tracking built in.
highlight.js on every fenced code block.
X-Post-Id, X-Post-Title, X-Post-Created on raw responses.
X-Post-Title: url-encoded// open & free