OCNORA

Ghost

Business appsAPI keycredential probe

Ghost publication content — create, edit, publish, schedule and email posts and pages through the Admin API, and read published posts, pages, tags and authors through the read-only Content API.

OCNORA ships 20 typed Ghost operations. Each node has a schema-driven form, input and output tables beside its settings, and is pre-flighted by Workflow Health before your first real run.

Operations 20

  • Get Published Page
    Read one published page by id or by slug through the read-only Content API. A draft answers 404.
    ghost.content_get_page
  • Get Published Post
    Read one published post by id or by slug through the read-only Content API. A draft answers 404.
    ghost.content_get_post
  • List Authors
    List the authors who have published a post, through the Content API. Staff users with no published post are not authors and are left out.
    ghost.content_list_authors
  • List Published Pages
    List published pages through the read-only Content API, ordered by title. Drafts are never returned.
    ghost.content_list_pages
  • List Published Posts
    List published posts through the read-only Content API, newest first. Drafts and scheduled posts are never returned.
    ghost.content_list_posts
  • List Tags
    List the site's public tags through the Content API, ordered by name. Use it to resolve a tag slug before filtering posts by it.
    ghost.content_list_tags
  • Copy Page
    Duplicate a page into a new draft, leaving the original untouched. Useful for building a page from a maintained template.
    ghost.copy_page
  • Copy Post
    Duplicate a post into a new draft, leaving the original untouched. Useful for templating a recurring newsletter.
    ghost.copy_post
  • Create Page
    Create a static page. Pages take the same fields as posts but never appear in the site's post feed and cannot be emailed.
    ghost.create_page
  • Create Post
    Create a post on the site. Without an explicit status Ghost stores it as a draft, so choose published when the post should go live immediately.
    ghost.create_post
  • Delete Page
    Delete a page permanently. Ghost has no trash for pages, so this cannot be undone from the API.
    ghost.delete_page
  • Delete Post
    Delete a post permanently. Ghost has no trash for posts, so this cannot be undone from the API.
    ghost.delete_post
  • Get Page
    Read one page by id or by slug, including drafts. Use this before an update to pick up the current updated_at.
    ghost.get_page
  • Get Post
    Read one post by id or by slug, including drafts. Use this before an update to pick up the current updated_at.
    ghost.get_post
  • Get Site Info
    Read the site's title, description, front-end URL and Ghost version. Check the version before using a feature a newer release added.
    ghost.get_site
  • List Pages
    List pages through the Admin API, one page of results at a time. Drafts are included.
    ghost.list_pages
  • List Posts
    List posts through the Admin API, one page at a time. Drafts, scheduled and sent posts are all included.
    ghost.list_posts
  • Publish or Schedule Post
    Publish a draft, schedule it for later, and optionally send it to a newsletter — the one edit that changes a post's status.
    ghost.publish_post
  • Update Page
    Update an existing page. Only the fields you fill in are sent, so a body-only change leaves the title and metadata alone.
    ghost.update_page
  • Update Post
    Update an existing post. Only the fields you fill in are sent, so a title-only change leaves the body and its tags untouched.
    ghost.update_post

Run your first Ghost workflow today.

Create a free workspace, add the connection, pick a template or describe the workflow to Build with AI. Workflow Health checks it before it runs.