Misar IO Docs

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

  1. Sign in at www.misar.blog.
  2. Go to Settings → API Keys and click New key.
  3. 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