Docs
Dashboard
SEO Research

content_calendar

Create editorial calendar and publication schedule

Parameters

ParameterTypeRequiredDefaultDescription
time_periodstring
Optional
monthPlanning period: 'week', 'month', or 'quarter'.
priority_keywordsstring[]
Optional
Keywords to prioritize. Uses project keywords if not specified.
content_typesstring[]
Optional
["blog"]Types of content to include (e.g., blog, guide, tutorial).

Example

Create a monthly content calendar:

Request

{
  "time_period": "month",
  "content_types": ["blog", "guide"]
}

Response

{
  "time_period": "month",
  "start_date": "2024-01-01",
  "end_date": "2024-01-31",
  "scheduled_content": [
    {
      "date": "2024-01-03",
      "title": "React Hooks Complete Guide",
      "type": "guide",
      "target_keyword": "react hooks",
      "priority": "high"
    },
    {
      "date": "2024-01-10",
      "title": "useState Best Practices",
      "type": "blog",
      "target_keyword": "usestate react",
      "priority": "medium"
    }
  ],
  "publishing_frequency": "2 posts/week"
}

Tips

Best Practices

  • Use 'quarter' for long-term strategic planning
  • Combine with topical_map for comprehensive strategy
  • Content types affect scheduling density
  • Priorities help focus limited resources

Related Tools