MisarMisar Docs
MisarMailMisarBlogMisarReachMisarPostMisarDevMisarCoderMisarSEOMisar PlatformMisar SSO
API Reference

Series

Create and manage multi-part article series on MisarBlog.

List Series

GET/series

Returns all series belonging to the authenticated creator.

Response fields

seriesArray<Series>

The creator's series. Each entry includes id, slug, title, description, cover_image_url, visibility, created_at, and url.

200 — OK
{
  "series": [
    {
      "id": "uuid",
      "slug": "building-with-ai",
      "title": "Building with AI",
      "description": "A 5-part series on integrating AI into production apps.",
      "cover_image_url": null,
      "visibility": "public",
      "created_at": "2026-01-10T00:00:00Z",
      "url": "https://www.misar.blog/@johndoe/series/building-with-ai"
    }
  ]
}

Create a Series

POST/series

Create a new series for the authenticated creator.

Request body

titlestringbodyrequired

Series title.

descriptionstringbody

Short description.

Request
{
  "title": "Building with AI",
  "description": "A 5-part series on integrating AI into production apps."
}
201 — Created
{
  "id": "uuid",
  "slug": "building-with-ai",
  "title": "Building with AI",
  "url": "https://www.misar.blog/@johndoe/series/building-with-ai",
  "created_at": "2026-04-15T09:00:00Z"
}

Add an Article to a Series

POST/series/{slug}/articles

Adds an existing published article to a series. Articles can only belong to one series.

Path parameters

slugstringpathrequired

Slug of the series to add the article to.

Request body

article_slugstringbodyrequired

Slug of an existing published article.

positionintegerbody

Order within the series (1-based; appended if omitted).

Response fields

series_slugstring

Slug of the series.

article_slugstring

Slug of the added article.

article_titlestring

Title of the added article.

positioninteger

The article's position within the series.

Request
{
  "article_slug": "building-ai-apps-with-next-js",
  "position": 1
}
200 — OK
{
  "series_slug": "building-with-ai",
  "article_slug": "building-ai-apps-with-next-js",
  "article_title": "Building AI Apps with Next.js",
  "position": 1
}

Errors

StatusDescription
401Invalid or missing API key
404Series or article not found