Docs
Dashboard
Pipeline

full_pipeline

Execute complete 5-phase content creation pipeline

Parameters

ParameterTypeRequiredDefaultDescription
seed_keywordstring
Optional
Starting keyword for the pipeline. Uses project primary keywords and niche if not specified.
content_typestring
Optional
guideType: 'guide', 'listicle', 'how-to', 'comparison', 'review'.
skip_phasesstring[]
Optional
Phases to skip: 'research', 'planning', 'creation', 'optimization', 'quality'.

Example

Run full content pipeline:

Request

{
  "seed_keyword": "react hooks",
  "content_type": "guide"
}

Response

{
  "pipeline_id": "pipe_abc123",
  "phases_completed": ["research", "planning", "creation", "optimization", "quality"],
  "result": {
    "title": "React Hooks: The Complete Guide",
    "content": "...[full article content]...",
    "word_count": 2800,
    "seo_score": 92,
    "quality_score": 88,
    "schema": { "@type": "Article", ... },
    "internal_links": 5
  },
  "ready_to_publish": true
}

Tips

Best Practices

  • Most comprehensive tool for content creation
  • Skip phases if you've already done research
  • Works with project configuration automatically
  • Use for end-to-end automated content creation

Related Tools