Getting Started
Get started with the MisarBlog Posts API — generate an API key and publish your first post.
Prerequisites
- A MisarBlog account at www.misar.blog
- An API key from Settings → API Keys
Step 1: Generate an API key
- Sign in at www.misar.blog.
- Go to Settings → API Keys and click New key.
- Copy the key — it is shown once.
Step 2: Publish a post
curl -X POST https://api.misar.io/blog/v1/articles \
-H "Authorization: Bearer <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"title": "Hello from the API",
"content": "My first API-published post.",
"status": "published"
}'Next steps
- Articles reference — full CRUD for posts
- Drafts — save and publish drafts
- MisarBlog overview — product introduction