Short answer: You can create ghost post in Ghost by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Ghost Create Ghost Post action to a workflow, map its 6 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Title title | string | Required | Title. Example: Getting Started with Our API |
HTML Content html | string | Required | HTML Content. e.g. "<p>Welcome to our blog...</p>" |
Status status | options | Optional | Status. Options: Draft, Published, Scheduled |
Tags tags | string | Optional | Comma-separated tag names (created automatically if they don't exist) |
Custom Excerpt excerpt | string | Optional | Short description shown in post previews |
Featured featured | options | Optional | Featured. Options: No, Yes |
{"title": "e.g. Getting Started with Our API","html": "<p>Welcome to our blog...</p>","status": "{{trigger.status}}","tags": "e.g. tutorial, api","excerpt": "{{trigger.excerpt}}"}
{"posts": [{"id": "abc123","url": "https://yourblog.com/getting-started/","slug": "getting-started","title": "Getting Started","status": "draft"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.