Docs
Dashboard
Session Management

save_content

Save generated content to session for publishing

Parameters

ParameterTypeRequiredDefaultDescription
titlestring
Required
Article title
contentstring
Required
Full article content (markdown)
meta_descriptionstring
Optional
SEO meta description
keywordsstring[]
Optional
Target keywords used in the article

Example

Save an article to session:

Request

{
  "title": "React Hooks Guide",
  "content": "# React Hooks Guide\n\nReact Hooks are functions that let you...",
  "meta_description": "Learn React Hooks with practical examples and best practices",
  "keywords": ["react hooks", "usestate", "useeffect"]
}

Response

{
  "status": "saved",
  "session_id": "sess_abc123",
  "content": {
    "title": "React Hooks Guide",
    "word_count": 2500,
    "keywords": ["react hooks", "usestate", "useeffect"]
  },
  "ready_for": ["publish_content", "publish_wordpress", "publish_ghost"]
}

Tips

Best Practices

  • Required before using publish_content
  • Saves content to session memory
  • Keywords help with SEO tracking
  • Use get_session to verify saved content

Related Tools