Blog Dashboard Navigation

Download skillThe skill is a reference md and part of wix-manage skill. You can use the following command to add the full wix-manage skill to your project:
Copy

Build direct links into the Wix Blog pages of a site's dashboard. For the general URL contract (metaSiteId, fallbacks, redirects), see Dashboard Navigation.

All Wix Blog (app ID 14bcded7-0066-7c35-14d7-466cb3f09103) pages live under:

Copy

Main Pages

PageURL after /dashboard/{metaSiteId}/What it manages
Overviewblog/overviewBlog summary and quick actions
Postsblog/postsAll posts — the page has tabs for published posts and drafts
Categoriesblog/categoriesPost categories
Edit categoryblog/categories/editA specific category
Tagsblog/tagsPost tags
Writersblog/writersWriters and editors
Edit writerblog/writers/editA specific writer
Commentsblog/commentsComment moderation
Blog analyticsblog/analyticsTraffic and engagement analytics
Monetizationblog/monetizationWays to earn from the blog
Blog settingsblog/settingsBlog-level settings

The bare app root blog lands on the posts page. Older writer-management links (staff-management/writers/...) redirect to blog/writers.

Pairing Entities with Their Read APIs

Fetch the entity via REST, then link the matching dashboard page. All calls use https://www.wixapis.com with an Authorization header. Published posts and drafts are separate endpoints (Blog Posts API vs Draft Posts API) but share the same dashboard page — drafts sit in the Drafts tab of blog/posts.

EntityRead APIDashboard link
Post (published)GET /blog/v3/posts · POST /blog/v3/posts/query · GET /blog/v3/posts/{postId}blog/posts
Draft postGET /blog/v3/draft-posts · POST /blog/v3/draft-posts/query · GET /blog/v3/draft-posts/{draftPostId}blog/posts (Drafts tab)
CategoryGET /blog/v3/categories · POST /blog/v3/categories/queryblog/categories
TagPOST /blog/v3/tags/query · GET /blog/v3/tags/{tagId}blog/tags
CommentComments API — POST /comments/v1/comments/query-cursorblog/comments
WriterWriters are site members — GET /members/v1/members (List Members)blog/writers

Example — after publishing a post, hand back the dashboard link:

Copy

Notes

  • Unknown deeper paths fall back to the longest matching route, so blog/posts/... links land on the posts list rather than 404.

Last updated: 30 July 2026

Did this help?